diff options
author | Sean Callanan <scallanan@apple.com> | 2010-03-17 22:01:36 +0000 |
---|---|---|
committer | Sean Callanan <scallanan@apple.com> | 2010-03-17 22:01:36 +0000 |
commit | d62c00ada5fb62dea6707db73b911707e0be0e48 (patch) | |
tree | d38e752970233d773dbdd5af47e99f9af06d8c39 /tools | |
parent | 78e1c65c7736e648e7f952e0f25f17280eff3916 (diff) | |
download | external_llvm-d62c00ada5fb62dea6707db73b911707e0be0e48.zip external_llvm-d62c00ada5fb62dea6707db73b911707e0be0e48.tar.gz external_llvm-d62c00ada5fb62dea6707db73b911707e0be0e48.tar.bz2 |
Changed install_name for libEnhancedDisassembly.dylib on
Mac OS X to match current install location. This has no
effect on other platforms.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@98773 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r-- | tools/edis/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/edis/Makefile b/tools/edis/Makefile index a3c5879..cd8f4b0 100644 --- a/tools/edis/Makefile +++ b/tools/edis/Makefile @@ -39,11 +39,12 @@ ifeq ($(HOST_OS),Darwin) -Wl,-seg1addr -Wl,0xE0000000 # 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,"@executable_path/../lib/lib$(LIBRARYNAME)$(SHLIBEXT)" + -Wl,"/Developer/usr/local/lib/lib$(LIBRARYNAME)$(SHLIBEXT)" endif endif |