2c0e9e2a09
Allow CPUTYPE=soft to build the current soft-float abi libraries. Add UPDATING entry to announce this. Approved by: re@ (gjb)
259 lines
10 KiB
Makefile
259 lines
10 KiB
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
CLANG_SRCS= ${LLVM_SRCS}/tools/clang
|
|
|
|
CFLAGS+= -I${LLVM_SRCS}/include -I${CLANG_SRCS}/include \
|
|
-I${LLVM_SRCS}/${SRCDIR} ${INCDIR:C/^/-I${LLVM_SRCS}\//} -I. \
|
|
-I${LLVM_SRCS}/../../lib/clang/include \
|
|
-DLLVM_ON_UNIX -DLLVM_ON_FREEBSD \
|
|
-D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS #-DNDEBUG
|
|
|
|
.if ${MK_CLANG_FULL} != "no"
|
|
CFLAGS+= -DCLANG_ENABLE_ARCMT \
|
|
-DCLANG_ENABLE_STATIC_ANALYZER
|
|
.endif # MK_CLANG_FULL
|
|
|
|
# LLVM is not strict aliasing safe as of 12/31/2011
|
|
CFLAGS+= -fno-strict-aliasing
|
|
|
|
TARGET_ARCH?= ${MACHINE_ARCH}
|
|
BUILD_ARCH?= ${MACHINE_ARCH}
|
|
|
|
# Armv6 uses hard float abi, unless the CPUTYPE has soft in it.
|
|
# arm (for armv4 and armv5 CPUs) always uses the soft float ABI.
|
|
# For all other targets, we stick with 'unknown'.
|
|
.if ${TARGET_ARCH:Marmv6*} && (!defined(CPUTYPE) || ${CPUTYPE:M*soft*} == "")
|
|
TARGET_ABI= gnueabihf
|
|
.elif ${TARGET_ARCH:Marm*}
|
|
TARGET_ABI= gnueabi
|
|
.else
|
|
TARGET_ABI= unknown
|
|
.endif
|
|
|
|
TARGET_TRIPLE?= ${TARGET_ARCH:C/amd64/x86_64/:C/arm64/aarch64/}-${TARGET_ABI}-freebsd11.0
|
|
BUILD_TRIPLE?= ${BUILD_ARCH:C/amd64/x86_64/:C/arm64/aarch64/}-unknown-freebsd11.0
|
|
CFLAGS+= -DLLVM_DEFAULT_TARGET_TRIPLE=\"${TARGET_TRIPLE}\" \
|
|
-DLLVM_HOST_TRIPLE=\"${BUILD_TRIPLE}\" \
|
|
-DDEFAULT_SYSROOT=\"${TOOLS_PREFIX}\"
|
|
CXXFLAGS+= -std=c++11 -fno-exceptions -fno-rtti
|
|
CXXFLAGS.clang+= -stdlib=libc++
|
|
|
|
.PATH: ${LLVM_SRCS}/${SRCDIR}
|
|
|
|
LLVM_TBLGEN?= llvm-tblgen
|
|
CLANG_TBLGEN?= clang-tblgen
|
|
|
|
Attributes.inc.h: ${LLVM_SRCS}/include/llvm/IR/Attributes.td
|
|
${LLVM_TBLGEN} -gen-attrs \
|
|
-I ${LLVM_SRCS}/include -d ${.TARGET:C/\.h$/.d/} -o ${.TARGET} \
|
|
${LLVM_SRCS}/include/llvm/IR/Attributes.td
|
|
|
|
AttributesCompatFunc.inc.h: ${LLVM_SRCS}/lib/IR/AttributesCompatFunc.td
|
|
${LLVM_TBLGEN} -gen-attrs \
|
|
-I ${LLVM_SRCS}/include -d ${.TARGET:C/\.h$/.d/} -o ${.TARGET} \
|
|
${LLVM_SRCS}/lib/IR/AttributesCompatFunc.td
|
|
|
|
Intrinsics.inc.h: ${LLVM_SRCS}/include/llvm/IR/Intrinsics.td
|
|
${LLVM_TBLGEN} -gen-intrinsic \
|
|
-I ${LLVM_SRCS}/include -d ${.TARGET:C/\.h$/.d/} -o ${.TARGET} \
|
|
${LLVM_SRCS}/include/llvm/IR/Intrinsics.td
|
|
|
|
.for arch in \
|
|
AArch64/AArch64 ARM/ARM Mips/Mips PowerPC/PPC Sparc/Sparc X86/X86
|
|
. for hdr in \
|
|
AsmMatcher/-gen-asm-matcher \
|
|
AsmWriter1/-gen-asm-writer,-asmwriternum=1 \
|
|
AsmWriter/-gen-asm-writer \
|
|
CallingConv/-gen-callingconv \
|
|
CodeEmitter/-gen-emitter \
|
|
DAGISel/-gen-dag-isel \
|
|
DisassemblerTables/-gen-disassembler \
|
|
FastISel/-gen-fast-isel \
|
|
InstrInfo/-gen-instr-info \
|
|
MCCodeEmitter/-gen-emitter \
|
|
MCPseudoLowering/-gen-pseudo-lowering \
|
|
RegisterInfo/-gen-register-info \
|
|
SubtargetInfo/-gen-subtarget
|
|
${arch:T}Gen${hdr:H:C/$/.inc.h/}: ${LLVM_SRCS}/lib/Target/${arch:H}/${arch:T}.td
|
|
${LLVM_TBLGEN} ${hdr:T:C/,/ /g} \
|
|
-I ${LLVM_SRCS}/include -I ${LLVM_SRCS}/lib/Target/${arch:H} \
|
|
-d ${.TARGET:C/\.h$/.d/} -o ${.TARGET} \
|
|
${LLVM_SRCS}/lib/Target/${arch:H}/${arch:T}.td
|
|
. endfor
|
|
.endfor
|
|
|
|
Attrs.inc.h: ${CLANG_SRCS}/include/clang/Basic/Attr.td
|
|
${CLANG_TBLGEN} -gen-clang-attr-classes \
|
|
-I ${CLANG_SRCS}/include -d ${.TARGET:C/\.h$/.d/} -o ${.TARGET} \
|
|
${CLANG_SRCS}/include/clang/Basic/Attr.td
|
|
|
|
AttrDump.inc.h: ${CLANG_SRCS}/include/clang/Basic/Attr.td
|
|
${CLANG_TBLGEN} -gen-clang-attr-dump \
|
|
-I ${CLANG_SRCS}/include -d ${.TARGET:C/\.h$/.d/} -o ${.TARGET} \
|
|
${CLANG_SRCS}/include/clang/Basic/Attr.td
|
|
|
|
AttrHasAttributeImpl.inc.h: ${CLANG_SRCS}/include/clang/Basic/Attr.td
|
|
${CLANG_TBLGEN} -gen-clang-attr-has-attribute-impl \
|
|
-I ${CLANG_SRCS}/include -d ${.TARGET:C/\.h$/.d/} -o ${.TARGET} \
|
|
${CLANG_SRCS}/include/clang/Basic/Attr.td
|
|
|
|
AttrImpl.inc.h: ${CLANG_SRCS}/include/clang/Basic/Attr.td
|
|
${CLANG_TBLGEN} -gen-clang-attr-impl \
|
|
-I ${CLANG_SRCS}/include -d ${.TARGET:C/\.h$/.d/} -o ${.TARGET} \
|
|
${CLANG_SRCS}/include/clang/Basic/Attr.td
|
|
|
|
AttrList.inc.h: ${CLANG_SRCS}/include/clang/Basic/Attr.td
|
|
${CLANG_TBLGEN} -gen-clang-attr-list \
|
|
-I ${CLANG_SRCS}/include -d ${.TARGET:C/\.h$/.d/} -o ${.TARGET} \
|
|
${CLANG_SRCS}/include/clang/Basic/Attr.td
|
|
|
|
AttrParsedAttrImpl.inc.h: ${CLANG_SRCS}/include/clang/Basic/Attr.td
|
|
${CLANG_TBLGEN} -gen-clang-attr-parsed-attr-impl \
|
|
-I ${CLANG_SRCS}/include -d ${.TARGET:C/\.h$/.d/} -o ${.TARGET} \
|
|
${CLANG_SRCS}/include/clang/Basic/Attr.td
|
|
|
|
AttrParsedAttrKinds.inc.h: ${CLANG_SRCS}/include/clang/Basic/Attr.td
|
|
${CLANG_TBLGEN} -gen-clang-attr-parsed-attr-kinds \
|
|
-I ${CLANG_SRCS}/include -d ${.TARGET:C/\.h$/.d/} -o ${.TARGET} \
|
|
${CLANG_SRCS}/include/clang/Basic/Attr.td
|
|
|
|
AttrParsedAttrList.inc.h: ${CLANG_SRCS}/include/clang/Basic/Attr.td
|
|
${CLANG_TBLGEN} -gen-clang-attr-parsed-attr-list \
|
|
-I ${CLANG_SRCS}/include -d ${.TARGET:C/\.h$/.d/} -o ${.TARGET} \
|
|
${CLANG_SRCS}/include/clang/Basic/Attr.td
|
|
|
|
AttrParserStringSwitches.inc.h: ${CLANG_SRCS}/include/clang/Basic/Attr.td
|
|
${CLANG_TBLGEN} -gen-clang-attr-parser-string-switches \
|
|
-I ${CLANG_SRCS}/include -d ${.TARGET:C/\.h$/.d/} -o ${.TARGET} \
|
|
${CLANG_SRCS}/include/clang/Basic/Attr.td
|
|
|
|
AttrPCHRead.inc.h: ${CLANG_SRCS}/include/clang/Basic/Attr.td
|
|
${CLANG_TBLGEN} -gen-clang-attr-pch-read \
|
|
-I ${CLANG_SRCS}/include -d ${.TARGET:C/\.h$/.d/} -o ${.TARGET} \
|
|
${CLANG_SRCS}/include/clang/Basic/Attr.td
|
|
|
|
AttrPCHWrite.inc.h: ${CLANG_SRCS}/include/clang/Basic/Attr.td
|
|
${CLANG_TBLGEN} -gen-clang-attr-pch-write \
|
|
-I ${CLANG_SRCS}/include -d ${.TARGET:C/\.h$/.d/} -o ${.TARGET} \
|
|
${CLANG_SRCS}/include/clang/Basic/Attr.td
|
|
|
|
AttrSpellingListIndex.inc.h: ${CLANG_SRCS}/include/clang/Basic/Attr.td
|
|
${CLANG_TBLGEN} -gen-clang-attr-spelling-index \
|
|
-I ${CLANG_SRCS}/include -d ${.TARGET:C/\.h$/.d/} -o ${.TARGET} \
|
|
${CLANG_SRCS}/include/clang/Basic/Attr.td
|
|
|
|
AttrTemplateInstantiate.inc.h: ${CLANG_SRCS}/include/clang/Basic/Attr.td
|
|
${CLANG_TBLGEN} -gen-clang-attr-template-instantiate \
|
|
-I ${CLANG_SRCS}/include -d ${.TARGET:C/\.h$/.d/} -o ${.TARGET} \
|
|
${CLANG_SRCS}/include/clang/Basic/Attr.td
|
|
|
|
AttrVisitor.inc.h: ${CLANG_SRCS}/include/clang/Basic/Attr.td
|
|
${CLANG_TBLGEN} -gen-clang-attr-ast-visitor \
|
|
-I ${CLANG_SRCS}/include -d ${.TARGET:C/\.h$/.d/} -o ${.TARGET} \
|
|
${CLANG_SRCS}/include/clang/Basic/Attr.td
|
|
|
|
CommentCommandInfo.inc.h: ${CLANG_SRCS}/include/clang/AST/CommentCommands.td
|
|
${CLANG_TBLGEN} -gen-clang-comment-command-info \
|
|
-d ${.TARGET:C/\.h$/.d/} -o ${.TARGET} \
|
|
${CLANG_SRCS}/include/clang/AST/CommentCommands.td
|
|
|
|
CommentCommandList.inc.h: ${CLANG_SRCS}/include/clang/AST/CommentCommands.td
|
|
${CLANG_TBLGEN} -gen-clang-comment-command-list \
|
|
-d ${.TARGET:C/\.h$/.d/} -o ${.TARGET} \
|
|
${CLANG_SRCS}/include/clang/AST/CommentCommands.td
|
|
|
|
CommentHTMLNamedCharacterReferences.inc.h: \
|
|
${CLANG_SRCS}/include/clang/AST/CommentHTMLNamedCharacterReferences.td
|
|
${CLANG_TBLGEN} -gen-clang-comment-html-named-character-references \
|
|
-d ${.TARGET:C/\.h$/.d/} -o ${.TARGET} \
|
|
${CLANG_SRCS}/include/clang/AST/CommentHTMLNamedCharacterReferences.td
|
|
|
|
CommentHTMLTags.inc.h: ${CLANG_SRCS}/include/clang/AST/CommentHTMLTags.td
|
|
${CLANG_TBLGEN} -gen-clang-comment-html-tags \
|
|
-d ${.TARGET:C/\.h$/.d/} -o ${.TARGET} \
|
|
${CLANG_SRCS}/include/clang/AST/CommentHTMLTags.td
|
|
|
|
CommentHTMLTagsProperties.inc.h: \
|
|
${CLANG_SRCS}/include/clang/AST/CommentHTMLTags.td
|
|
${CLANG_TBLGEN} -gen-clang-comment-html-tags-properties \
|
|
-d ${.TARGET:C/\.h$/.d/} -o ${.TARGET} \
|
|
${CLANG_SRCS}/include/clang/AST/CommentHTMLTags.td
|
|
|
|
CommentNodes.inc.h: ${CLANG_SRCS}/include/clang/Basic/CommentNodes.td
|
|
${CLANG_TBLGEN} -gen-clang-comment-nodes \
|
|
-d ${.TARGET:C/\.h$/.d/} -o ${.TARGET} \
|
|
${CLANG_SRCS}/include/clang/Basic/CommentNodes.td
|
|
|
|
DeclNodes.inc.h: ${CLANG_SRCS}/include/clang/Basic/DeclNodes.td
|
|
${CLANG_TBLGEN} -gen-clang-decl-nodes \
|
|
-d ${.TARGET:C/\.h$/.d/} -o ${.TARGET} \
|
|
${CLANG_SRCS}/include/clang/Basic/DeclNodes.td
|
|
|
|
StmtNodes.inc.h: ${CLANG_SRCS}/include/clang/Basic/StmtNodes.td
|
|
${CLANG_TBLGEN} -gen-clang-stmt-nodes \
|
|
-d ${.TARGET:C/\.h$/.d/} -o ${.TARGET} \
|
|
${CLANG_SRCS}/include/clang/Basic/StmtNodes.td
|
|
|
|
arm_neon.h: ${CLANG_SRCS}/include/clang/Basic/arm_neon.td
|
|
${CLANG_TBLGEN} -gen-arm-neon \
|
|
-d ${.TARGET:C/\.h$/.d/} -o ${.TARGET} \
|
|
${CLANG_SRCS}/include/clang/Basic/arm_neon.td
|
|
|
|
arm_neon.inc.h: ${CLANG_SRCS}/include/clang/Basic/arm_neon.td
|
|
${CLANG_TBLGEN} -gen-arm-neon-sema \
|
|
-d ${.TARGET:C/\.h$/.d/} -o ${.TARGET} \
|
|
${CLANG_SRCS}/include/clang/Basic/arm_neon.td
|
|
|
|
DiagnosticGroups.inc.h: ${CLANG_SRCS}/include/clang/Basic/Diagnostic.td
|
|
${CLANG_TBLGEN} -gen-clang-diag-groups \
|
|
-I ${CLANG_SRCS}/include/clang/Basic -d ${.TARGET:C/\.h$/.d/} \
|
|
-o ${.TARGET} ${CLANG_SRCS}/include/clang/Basic/Diagnostic.td
|
|
|
|
DiagnosticIndexName.inc.h: ${CLANG_SRCS}/include/clang/Basic/Diagnostic.td
|
|
${CLANG_TBLGEN} -gen-clang-diags-index-name \
|
|
-I ${CLANG_SRCS}/include/clang/Basic -d ${.TARGET:C/\.h$/.d/} \
|
|
-o ${.TARGET} ${CLANG_SRCS}/include/clang/Basic/Diagnostic.td
|
|
|
|
.for hdr in AST Analysis Comment Common Driver Frontend Lex Parse Sema Serialization
|
|
Diagnostic${hdr}Kinds.inc.h: ${CLANG_SRCS}/include/clang/Basic/Diagnostic.td
|
|
${CLANG_TBLGEN} -gen-clang-diags-defs -clang-component=${hdr} \
|
|
-I ${CLANG_SRCS}/include/clang/Basic -d ${.TARGET:C/\.h$/.d/} \
|
|
-o ${.TARGET} ${CLANG_SRCS}/include/clang/Basic/Diagnostic.td
|
|
.endfor
|
|
|
|
# XXX: Atrocious hack, need to clean this up later
|
|
.if ${LIB:U} == llvmlibdriver
|
|
Options.inc.h: ${LLVM_SRCS}/lib/LibDriver/Options.td
|
|
${LLVM_TBLGEN} -gen-opt-parser-defs \
|
|
-I ${LLVM_SRCS}/include \
|
|
-d ${.TARGET:C/\.h$/.d/} -o ${.TARGET} \
|
|
${LLVM_SRCS}/lib/LibDriver/Options.td
|
|
.elif ${LIB:U} == clangdriver || ${LIB:U} == clangfrontend || \
|
|
${LIB:U} == clangfrontendtool || ${PROG_CXX:U} == clang
|
|
Options.inc.h: ${CLANG_SRCS}/include/clang/Driver/Options.td
|
|
${LLVM_TBLGEN} -gen-opt-parser-defs \
|
|
-I ${LLVM_SRCS}/include -I ${CLANG_SRCS}/include/clang/Driver \
|
|
-d ${.TARGET:C/\.h$/.d/} -o ${.TARGET} \
|
|
${CLANG_SRCS}/include/clang/Driver/Options.td
|
|
.endif
|
|
|
|
Checkers.inc.h: ${CLANG_SRCS}/lib/StaticAnalyzer/Checkers/Checkers.td
|
|
${CLANG_TBLGEN} -gen-clang-sa-checkers \
|
|
-I ${CLANG_SRCS}/include -d ${.TARGET:C/\.h$/.d/} -o ${.TARGET} \
|
|
${CLANG_SRCS}/lib/StaticAnalyzer/Checkers/Checkers.td
|
|
|
|
.for dep in ${TGHDRS:C/$/.inc.d/}
|
|
. if ${MAKE_VERSION} < 20160220
|
|
. if !make(depend)
|
|
. sinclude "${dep}"
|
|
. endif
|
|
. else
|
|
. dinclude "${dep}"
|
|
. endif
|
|
.endfor
|
|
|
|
SRCS+= ${TGHDRS:C/$/.inc.h/}
|
|
CLEANFILES+= ${TGHDRS:C/$/.inc.h/} ${TGHDRS:C/$/.inc.d/}
|