1 ##===- tools/lto/Makefile ----------------------------------*- Makefile -*-===##
3 # The LLVM Compiler Infrastructure
5 # This file is distributed under the University of Illinois Open Source
6 # License. See LICENSE.TXT for details.
8 ##===----------------------------------------------------------------------===##
12 LINK_COMPONENTS := all-targets core lto mc mcdisassembler support
13 LINK_LIBS_IN_SHARED := 1
16 EXPORTED_SYMBOL_FILE = $(PROJ_SRC_DIR)/lto.exports
18 include $(LEVEL)/Makefile.common
20 ifdef LLVM_VERSION_INFO
21 CXX.Flags += -DLLVM_VERSION_INFO='"$(LLVM_VERSION_INFO)"'
24 ifeq ($(HOST_OS),Darwin)
25 # Special hack to allow libLTO to have an offset version number.
26 ifdef LLVM_LTO_VERSION_OFFSET
27 LTO_LIBRARY_VERSION := $(shell expr $(LLVM_SUBMIT_VERSION) + \
28 $(LLVM_LTO_VERSION_OFFSET))
30 LTO_LIBRARY_VERSION := $(LLVM_SUBMIT_VERSION)
33 # set dylib internal version number to llvmCore submission number
34 ifdef LLVM_SUBMIT_VERSION
35 LLVMLibsOptions := $(LLVMLibsOptions) -Wl,-current_version \
36 -Wl,$(LTO_LIBRARY_VERSION).$(LLVM_SUBMIT_SUBVERSION) \
37 -Wl,-compatibility_version -Wl,1
40 # Mac OS X 10.4 and earlier tools do not allow a second -install_name on command line
41 DARWIN_VERS := $(shell echo $(TARGET_TRIPLE) | sed 's/.*darwin\([0-9]*\).*/\1/')
42 ifneq ($(DARWIN_VERS),8)
43 LLVMLibsOptions := $(LLVMLibsOptions) \
45 -Wl,"@executable_path/../lib/lib$(LIBRARYNAME)$(SHLIBEXT)"
48 # If we're doing an Apple-style build, add the LTO object path.
50 TempFile := $(shell mkdir -p ${OBJROOT}/dSYMs ; mktemp ${OBJROOT}/dSYMs/llvm-lto.XXXXXX)
51 LLVMLibsOptions := $(LLVMLibsOptions) \
52 -Wl,-object_path_lto -Wl,$(TempFile)