forked from OSchip/llvm-project
63 lines
2.1 KiB
Makefile
63 lines
2.1 KiB
Makefile
##===- tools/libclang/Makefile -----------------------------*- Makefile -*-===##
|
|
#
|
|
# The LLVM Compiler Infrastructure
|
|
#
|
|
# This file is distributed under the University of Illinois Open Source
|
|
# License. See LICENSE.TXT for details.
|
|
#
|
|
##===----------------------------------------------------------------------===##
|
|
|
|
CLANG_LEVEL := ../..
|
|
LIBRARYNAME = clang
|
|
|
|
EXPORTED_SYMBOL_FILE = $(PROJ_SRC_DIR)/libclang.exports
|
|
|
|
LINK_LIBS_IN_SHARED = 1
|
|
SHARED_LIBRARY = 1
|
|
|
|
include $(CLANG_LEVEL)/../../Makefile.config
|
|
LINK_COMPONENTS := AsmParser BitReader Core MC MCParser Option Support
|
|
USEDLIBS = clangIndex.a clangARCMigrate.a \
|
|
clangRewriteFrontend.a \
|
|
clangFormat.a \
|
|
clangTooling.a clangToolingCore.a \
|
|
clangFrontend.a clangDriver.a \
|
|
clangSerialization.a \
|
|
clangParse.a clangSema.a \
|
|
clangStaticAnalyzerCheckers.a clangStaticAnalyzerCore.a \
|
|
clangRewrite.a \
|
|
clangAnalysis.a clangEdit.a \
|
|
clangASTMatchers.a \
|
|
clangAST.a clangLex.a clangBasic.a \
|
|
|
|
include $(CLANG_LEVEL)/Makefile
|
|
|
|
# Add soname to the library.
|
|
ifeq ($(HOST_OS), $(filter $(HOST_OS), Linux FreeBSD GNU GNU/kFreeBSD))
|
|
LLVMLibsOptions += -Wl,-soname,lib$(LIBRARYNAME)$(SHLIBEXT)
|
|
endif
|
|
|
|
ifeq ($(ENABLE_CLANG_ARCMT),1)
|
|
CXX.Flags += -DCLANG_ENABLE_ARCMT
|
|
endif
|
|
|
|
##===----------------------------------------------------------------------===##
|
|
# FIXME: This is copied from the 'lto' makefile. Should we share this?
|
|
##===----------------------------------------------------------------------===##
|
|
|
|
ifeq ($(HOST_OS),Darwin)
|
|
LLVMLibsOptions += -Wl,-compatibility_version,1
|
|
|
|
# Set dylib internal version number to submission number.
|
|
ifdef LLVM_SUBMIT_VERSION
|
|
LLVMLibsOptions += -Wl,-current_version \
|
|
-Wl,$(LLVM_SUBMIT_VERSION).$(LLVM_SUBMIT_SUBVERSION)
|
|
endif
|
|
|
|
# If we're doing an Apple-style build, add the LTO object path.
|
|
ifeq ($(RC_XBS),YES)
|
|
TempFile := $(shell mkdir -p ${OBJROOT}/dSYMs ; mktemp ${OBJROOT}/dSYMs/clang-lto.XXXXXX)
|
|
LLVMLibsOptions += -Wl,-object_path_lto -Wl,$(TempFile)
|
|
endif
|
|
endif
|