1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

Changed install_name for libEnhancedDisassembly.dylib on

Mac OS X to match current install location.  This has no
effect on other platforms.

llvm-svn: 98773
This commit is contained in:
Sean Callanan 2010-03-17 22:01:36 +00:00
parent 2da4397c39
commit 233132382a

View File

@ -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