mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-05-13 17:38:39 +00:00
Add compatibility version when compiling the Apple way.
<rdar://problem/9600408> git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@132929 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
7ac8f8f341
commit
1922a11907
@ -20,3 +20,33 @@ EXTRA_DIST = libprofile.exports
|
|||||||
EXPORTED_SYMBOL_FILE = $(PROJ_SRC_DIR)/libprofile.exports
|
EXPORTED_SYMBOL_FILE = $(PROJ_SRC_DIR)/libprofile.exports
|
||||||
|
|
||||||
include $(LEVEL)/Makefile.common
|
include $(LEVEL)/Makefile.common
|
||||||
|
|
||||||
|
ifeq ($(HOST_OS),Darwin)
|
||||||
|
# Special hack to allow libprofile_rt to have an offset version number.
|
||||||
|
ifdef LLVM_LTO_VERSION_OFFSET
|
||||||
|
LTO_LIBRARY_VERSION := $(shell expr $(LLVM_SUBMIT_VERSION) + \
|
||||||
|
$(LLVM_LTO_VERSION_OFFSET))
|
||||||
|
else
|
||||||
|
LTO_LIBRARY_VERSION := $(LLVM_SUBMIT_VERSION)
|
||||||
|
endif
|
||||||
|
|
||||||
|
# Set dylib internal version number to llvmCore submission number.
|
||||||
|
ifdef LLVM_SUBMIT_VERSION
|
||||||
|
LLVMLibsOptions := $(LLVMLibsOptions) -Wl,-current_version \
|
||||||
|
-Wl,$(LTO_LIBRARY_VERSION).$(LLVM_SUBMIT_SUBVERSION) \
|
||||||
|
-Wl,-compatibility_version -Wl,1
|
||||||
|
endif
|
||||||
|
# Extra options to override libtool defaults.
|
||||||
|
LLVMLibsOptions := $(LLVMLibsOptions) \
|
||||||
|
-Wl,-dead_strip \
|
||||||
|
-Wl,-seg1addr -Wl,0xE0000000
|
||||||
|
|
||||||
|
# Mac OS X 10.4 and earlier tools do not allow a second -install_name on
|
||||||
|
# command line.
|
||||||
|
DARWIN_VERS := $(shell echo $(TARGET_TRIPLE) | sed 's/.*darwin\([0-9]*\).*/\1/')
|
||||||
|
ifneq ($(DARWIN_VERS),8)
|
||||||
|
LLVMLibsOptions := $(LLVMLibsOptions) \
|
||||||
|
-Wl,-install_name \
|
||||||
|
-Wl,"@executable_path/../lib/lib$(LIBRARYNAME)$(SHLIBEXT)"
|
||||||
|
endif
|
||||||
|
endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user