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
|
|
|
|
LINK_COMPONENTS := all-targets ipo scalaropts linker bitreader bitwriter \
|
2012-02-01 04:51:43 +01:00
|
|
|
mcdisassembler vectorize
|
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
|
|
|
|
|
2010-10-16 00:46:15 +02:00
|
|
|
ifdef LLVM_VERSION_INFO
|
|
|
|
CXX.Flags += -DLLVM_VERSION_INFO='"$(LLVM_VERSION_INFO)"'
|
|
|
|
endif
|
|
|
|
|
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
|
|
|
|
# extra options to override libtool defaults
|
|
|
|
LLVMLibsOptions := $(LLVMLibsOptions) \
|
2008-03-02 07:33:06 +01:00
|
|
|
-Wl,-dead_strip \
|
|
|
|
-Wl,-seg1addr -Wl,0xE0000000
|
2008-02-26 21:26:43 +01:00
|
|
|
|
2008-03-02 07:33:06 +01:00
|
|
|
# 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) \
|
2010-07-31 23:32:56 +02:00
|
|
|
-Wl,-install_name \
|
2008-03-02 07:33:06 +01:00
|
|
|
-Wl,"@executable_path/../lib/lib$(LIBRARYNAME)$(SHLIBEXT)"
|
|
|
|
endif
|
2012-10-04 01:52:10 +02:00
|
|
|
|
|
|
|
# If we're doing an Apple-style build, add the LTO object path.
|
|
|
|
ifeq ($(RC_BUILDIT),YES)
|
2012-10-10 01:59:01 +02:00
|
|
|
TempFile = $(shell mktemp ${OBJROOT}/llvm-lto.XXXXXX)
|
2012-10-04 01:52:10 +02:00
|
|
|
LLVMLibsOptions := $(LLVMLibsOptions) \
|
|
|
|
-Wl,-object_path_lto -Wl,$(TempFile)
|
|
|
|
endif
|
2008-02-26 21:26:43 +01:00
|
|
|
endif
|