[Libclc-dev] [PATCH v2 1/1] configure: Add rpath to prepare-builtins util
Jan Vesely
jan.vesely at rutgers.edu
Mon Aug 11 07:49:35 PDT 2014
v2: use space instead of '=' to make Mac happy
Signed-off-by: Jan Vesely <jan.vesely at rutgers.edu>
---
turns out using space works on linux too
configure.py | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/configure.py b/configure.py
index 768a6ad..ece89ed 100755
--- a/configure.py
+++ b/configure.py
@@ -72,6 +72,7 @@ llvm_core_libs = llvm_config(['--libs', 'core', 'bitreader', 'bitwriter']) + ' '
llvm_system_libs + ' ' + \
llvm_config(['--ldflags'])
llvm_cxxflags = llvm_config(['--cxxflags']) + ' -fno-exceptions -fno-rtti'
+llvm_libdir = llvm_config(['--libdir'])
llvm_clang = os.path.join(llvm_bindir, 'clang')
llvm_link = os.path.join(llvm_bindir, 'llvm-link')
@@ -110,7 +111,7 @@ b.rule("OPT", command = llvm_opt + " -O3 -o $out $in",
description = 'OPT $out')
c_compiler_rule(b, "LLVM_TOOL_CXX", 'CXX', cxx_compiler, llvm_cxxflags)
-b.rule("LLVM_TOOL_LINK", cxx_compiler + " -o $out $in %s" % llvm_core_libs, 'LINK $out')
+b.rule("LLVM_TOOL_LINK", cxx_compiler + " -o $out $in %s" % llvm_core_libs + " -Wl,-rpath %s" % llvm_libdir, 'LINK $out')
prepare_builtins = os.path.join('utils', 'prepare-builtins')
b.build(os.path.join('utils', 'prepare-builtins.o'), "LLVM_TOOL_CXX",
--
1.9.3
More information about the Libclc-dev
mailing list