[zorg] r176839 - Removed quotes around --with-extra-options so that -flto, -gline-tables-only are treated as separate arguments instead of one argument.

Michael Gottesman mgottesman at apple.com
Mon Mar 11 16:44:13 PDT 2013


Author: mgottesman
Date: Mon Mar 11 18:44:13 2013
New Revision: 176839

URL: http://llvm.org/viewvc/llvm-project?rev=176839&view=rev
Log:
Removed quotes around --with-extra-options so that -flto, -gline-tables-only are treated as separate arguments instead of one argument.

Modified:
    zorg/trunk/zorg/buildbot/builders/ClangBuilder.py

Modified: zorg/trunk/zorg/buildbot/builders/ClangBuilder.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/zorg/buildbot/builders/ClangBuilder.py?rev=176839&r1=176838&r2=176839&view=diff
==============================================================================
--- zorg/trunk/zorg/buildbot/builders/ClangBuilder.py (original)
+++ zorg/trunk/zorg/buildbot/builders/ClangBuilder.py Mon Mar 11 18:44:13 2013
@@ -716,7 +716,7 @@ def phasedClang(config_options, is_boots
     # If we need to use lto, add in proper flags here.
     if use_lto:
       configure_args.append(
-        '--with-extra-options="-flto -gline-tables-only"')
+        '--with-extra-options=-flto -gline-tables-only')
     
     # If we are using a previously built compiler, download it and override CC
     # and CXX.





More information about the llvm-commits mailing list