From de808ca855813669f77fe8401b9de6a91b541d2f Mon Sep 17 00:00:00 2001 From: Lauro Ramos Venancio Date: Wed, 27 Feb 2008 18:46:32 +0000 Subject: [PATCH] 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 --- utils/ccc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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): -- 2.50.1