Disable internalize. Unfortunately, the configure scripts are not ready for some link time optimizations.



git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@47682 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/utils/ccc b/utils/ccc
index b27a70b..5b54c47 100755
--- a/utils/ccc
+++ b/utils/ccc
@@ -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):