forked from OSchip/llvm-project
Disable internalize. Unfortunately, the configure scripts are not ready for some link time optimizations.
llvm-svn: 47682
This commit is contained in:
parent
41dd9d0bee
commit
e1938405fa
|
@ -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):
|
||||
|
|
Loading…
Reference in New Issue