[llvm-commits] [llvm] r100163 - /llvm/trunk/tools/edis/Makefile
Sean Callanan
scallanan at apple.com
Thu Apr 1 17:53:42 PDT 2010
Author: spyffe
Date: Thu Apr 1 19:53:42 2010
New Revision: 100163
URL: http://llvm.org/viewvc/llvm-project?rev=100163&view=rev
Log:
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.
Modified:
llvm/trunk/tools/edis/Makefile
Modified: llvm/trunk/tools/edis/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/edis/Makefile?rev=100163&r1=100162&r2=100163&view=diff
==============================================================================
--- llvm/trunk/tools/edis/Makefile (original)
+++ llvm/trunk/tools/edis/Makefile Thu Apr 1 19:53:42 2010
@@ -25,26 +25,23 @@
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
More information about the llvm-commits
mailing list