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

llvm-svn: 47682
This commit is contained in:
Lauro Ramos Venancio 2008-02-27 18:46:32 +00:00
parent 41dd9d0bee
commit e1938405fa
1 changed files with 1 additions and 1 deletions

View File

@ -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):