summaryrefslogtreecommitdiff
path: root/tools/edis
diff options
context:
space:
mode:
authorSean Callanan <scallanan@apple.com>2010-04-02 00:53:42 +0000
committerSean Callanan <scallanan@apple.com>2010-04-02 00:53:42 +0000
commiteb3a1ab7961ad4f7b53e9e9d5f23961a7f15444f (patch)
treeb4cad6e3539f2d3abd3afa58484ee2074bd9c9cc /tools/edis
parent04d52f8435e264a83ec42fa81d6211adbc964422 (diff)
downloadllvm-eb3a1ab7961ad4f7b53e9e9d5f23961a7f15444f.tar.gz
llvm-eb3a1ab7961ad4f7b53e9e9d5f23961a7f15444f.tar.bz2
llvm-eb3a1ab7961ad4f7b53e9e9d5f23961a7f15444f.tar.xz
Updated the install location for EnhancedDisassembly
on Mac OS X to use @rpath rather than an absolute path. Also allowed the version to be set using an environment variable. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100163 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/edis')
-rw-r--r--tools/edis/Makefile17
1 files changed, 7 insertions, 10 deletions
diff --git a/tools/edis/Makefile b/tools/edis/Makefile
index cd8f4b067a..7f7b097e2c 100644
--- a/tools/edis/Makefile
+++ b/tools/edis/Makefile
@@ -25,26 +25,23 @@ LINK_COMPONENTS := $(TARGETS_TO_BUILD) x86asmprinter x86disassembler
include $(LEVEL)/Makefile.common
ifeq ($(HOST_OS),Darwin)
- # set dylib internal version number to llvmCore submission number
- ifdef LLVM_SUBMIT_VERSION
- LLVMLibsOptions := $(LLVMLibsOptions) -Wl,-current_version \
- -Wl,$(LLVM_SUBMIT_VERSION).$(LLVM_SUBMIT_SUBVERSION) \
- -Wl,-compatibility_version -Wl,1
- endif
# extra options to override libtool defaults
LLVMLibsOptions := $(LLVMLibsOptions) \
-avoid-version \
-Wl,-exported_symbols_list -Wl,$(PROJ_SRC_DIR)/EnhancedDisassembly.exports \
- -Wl,-dead_strip \
- -Wl,-seg1addr -Wl,0xE0000000
+ -Wl,-dead_strip
+
+ ifdef EDIS_VERSION
+ LLVMLibsOptions := -Wl,-current_version -Wl,$(EDIS_VERSION) \
+ -Wl,-compatibility_version -Wl,1
+ endif
# Mac OS X 10.4 and earlier tools do not allow a second -install_name on command line
- # Path is /Developer/usr/local/lib for now; will use an rpath-based mechanism soon
DARWIN_VERS := $(shell echo $(TARGET_TRIPLE) | sed 's/.*darwin\([0-9]*\).*/\1/')
ifneq ($(DARWIN_VERS),8)
LLVMLibsOptions := $(LLVMLibsOptions) \
-no-undefined -Wl,-install_name \
- -Wl,"/Developer/usr/local/lib/lib$(LIBRARYNAME)$(SHLIBEXT)"
+ -Wl,"@rpath/lib$(LIBRARYNAME)$(SHLIBEXT)"
endif
endif