summaryrefslogtreecommitdiff
path: root/Makefile.config.in
diff options
context:
space:
mode:
authorJeffrey Yasskin <jyasskin@google.com>2010-02-23 18:10:07 +0000
committerJeffrey Yasskin <jyasskin@google.com>2010-02-23 18:10:07 +0000
commitea6c39d417172a8edb99667e93cd6b67cd024e6a (patch)
tree3c6c8f110eb785834997bfe59326bc8022f68dfd /Makefile.config.in
parente3d97c744772c075e11f372548cc8d848d555ee9 (diff)
downloadllvm-ea6c39d417172a8edb99667e93cd6b67cd024e6a.tar.gz
llvm-ea6c39d417172a8edb99667e93cd6b67cd024e6a.tar.bz2
llvm-ea6c39d417172a8edb99667e93cd6b67cd024e6a.tar.xz
Roll r96559 forward again, adding libLLVM-2.7svn.so to LLVM. This links 3 of
the examples shared to make sure the shared library keeps working. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@96959 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile.config.in')
-rw-r--r--Makefile.config.in8
1 files changed, 8 insertions, 0 deletions
diff --git a/Makefile.config.in b/Makefile.config.in
index 5d8645fef9..d59c81b831 100644
--- a/Makefile.config.in
+++ b/Makefile.config.in
@@ -262,6 +262,11 @@ ENABLE_THREADS := @ENABLE_THREADS@
# Do we want to build with position independent code?
ENABLE_PIC := @ENABLE_PIC@
+# Do we want to link the tools shared?
+ifndef ENABLE_SHARED
+ ENABLE_SHARED := @ENABLE_SHARED@
+endif
+
# Use -fvisibility-inlines-hidden?
ENABLE_VISIBILITY_INLINES_HIDDEN := @ENABLE_VISIBILITY_INLINES_HIDDEN@
@@ -272,6 +277,9 @@ ENABLE_VISIBILITY_INLINES_HIDDEN := @ENABLE_VISIBILITY_INLINES_HIDDEN@
# Enable JIT for this platform
TARGET_HAS_JIT = @TARGET_HAS_JIT@
+# Environment variable to set to change the runtime shared library search path.
+SHLIBPATH_VAR = @SHLIBPATH_VAR@
+
# Shared library extension for host platform.
SHLIBEXT = @SHLIBEXT@