From: Lauro Ramos Venancio Date: Wed, 27 Feb 2008 18:46:32 +0000 (+0000) Subject: Disable internalize. Unfortunately, the configure scripts are not ready for some... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=de808ca855813669f77fe8401b9de6a91b541d2f;p=clang 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 b27a70b3a8..5b54c476c2 100755 --- a/utils/ccc +++ b/utils/ccc @@ -35,7 +35,7 @@ def compile(args): run(command + args) def link(args): - command = 'llvm-ld -native'.split() + command = 'llvm-ld -native -disable-internalize'.split() run(command + args) def extension(path):