2008-07-19 01:47:27 +02:00
|
|
|
##===- tools/lto/Makefile ----------------------------------*- Makefile -*-===##
|
2008-02-26 21:26:43 +01:00
|
|
|
#
|
|
|
|
# The LLVM Compiler Infrastructure
|
|
|
|
#
|
|
|
|
# This file is distributed under the University of Illinois Open Source
|
|
|
|
# License. See LICENSE.TXT for details.
|
|
|
|
#
|
|
|
|
##===----------------------------------------------------------------------===##
|
|
|
|
|
2011-10-18 21:27:24 +02:00
|
|
|
LEVEL := ../..
|
|
|
|
LIBRARYNAME := LTO
|
2014-01-31 18:57:50 +01:00
|
|
|
LINK_COMPONENTS := all-targets core lto mc mcdisassembler support
|
2011-10-18 21:27:24 +02:00
|
|
|
LINK_LIBS_IN_SHARED := 1
|
|
|
|
SHARED_LIBRARY := 1
|
2008-02-26 21:26:43 +01:00
|
|
|
|
2010-04-16 01:08:00 +02:00
|
|
|
EXPORTED_SYMBOL_FILE = $(PROJ_SRC_DIR)/lto.exports
|
2010-04-15 22:54:25 +02:00
|
|
|
|
2008-02-26 21:26:43 +01:00
|
|
|
include $(LEVEL)/Makefile.common
|
|
|
|
|
2009-08-18 02:40:33 +02:00
|
|
|
ifeq ($(HOST_OS),Darwin)
|
2010-07-16 03:41:38 +02:00
|
|
|
# Special hack to allow libLTO 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
|
|
|
|
|
2008-02-26 21:26:43 +01:00
|
|
|
# set dylib internal version number to llvmCore submission number
|
|
|
|
ifdef LLVM_SUBMIT_VERSION
|
|
|
|
LLVMLibsOptions := $(LLVMLibsOptions) -Wl,-current_version \
|
2010-07-16 03:41:38 +02:00
|
|
|
-Wl,$(LTO_LIBRARY_VERSION).$(LLVM_SUBMIT_SUBVERSION) \
|
2008-02-29 03:01:34 +01:00
|
|
|
-Wl,-compatibility_version -Wl,1
|
2008-02-26 21:26:43 +01:00
|
|
|
endif
|
|
|
|
|
2012-10-04 01:52:10 +02:00
|
|
|
# If we're doing an Apple-style build, add the LTO object path.
|
2013-02-13 20:44:08 +01:00
|
|
|
ifeq ($(RC_XBS),YES)
|
2012-10-10 07:29:15 +02:00
|
|
|
TempFile := $(shell mkdir -p ${OBJROOT}/dSYMs ; mktemp ${OBJROOT}/dSYMs/llvm-lto.XXXXXX)
|
|
|
|
LLVMLibsOptions := $(LLVMLibsOptions) \
|
2013-05-03 00:52:47 +02:00
|
|
|
-Wl,-object_path_lto -Wl,$(TempFile)
|
2012-10-04 01:52:10 +02:00
|
|
|
endif
|
2008-02-26 21:26:43 +01:00
|
|
|
endif
|