[cfe-commits] r47682 - /cfe/trunk/utils/ccc

Lauro Ramos Venancio lauro.venancio at gmail.com
Wed Feb 27 10:46:32 PST 2008


Author: laurov
Date: Wed Feb 27 12:46:32 2008
New Revision: 47682

URL: http://llvm.org/viewvc/llvm-project?rev=47682&view=rev
Log:
Disable internalize. Unfortunately, the configure scripts are not ready for some link time optimizations.


Modified:
    cfe/trunk/utils/ccc

Modified: cfe/trunk/utils/ccc
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/utils/ccc?rev=47682&r1=47681&r2=47682&view=diff

==============================================================================
--- cfe/trunk/utils/ccc (original)
+++ cfe/trunk/utils/ccc Wed Feb 27 12:46:32 2008
@@ -35,7 +35,7 @@
     run(command + args)
 
 def link(args):
-    command = 'llvm-ld -native'.split()
+    command = 'llvm-ld -native -disable-internalize'.split()
     run(command + args)
 
 def extension(path):





More information about the cfe-commits mailing list