9c5d7caa5a
The Makefile.inc1 TARGET_TRIPLE is for specifying which -target is used during the build of world. MFC after: 2 weeks Reviewed by: dim, imp Sponsored by: Dell EMC Isilon Differential Revision: https://reviews.freebsd.org/D12792
56 lines
1.5 KiB
Makefile
56 lines
1.5 KiB
Makefile
# $FreeBSD$
|
|
|
|
.ifndef LLVM_SRCS
|
|
.error Please define LLVM_SRCS before including this file
|
|
.endif
|
|
|
|
.ifndef SRCDIR
|
|
.error Please define SRCDIR before including this file
|
|
.endif
|
|
|
|
.PATH: ${LLVM_SRCS}/${SRCDIR}
|
|
|
|
CFLAGS+= -I${SRCTOP}/lib/clang/include
|
|
CFLAGS+= -I${LLVM_SRCS}/include
|
|
CFLAGS+= -DLLVM_BUILD_GLOBAL_ISEL
|
|
CFLAGS+= -D__STDC_LIMIT_MACROS
|
|
CFLAGS+= -D__STDC_CONSTANT_MACROS
|
|
#CFLAGS+= -DNDEBUG
|
|
|
|
TARGET_ARCH?= ${MACHINE_ARCH}
|
|
BUILD_ARCH?= ${MACHINE_ARCH}
|
|
|
|
# Armv6 and armv7 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:Marmv[67]*} && (!defined(CPUTYPE) || ${CPUTYPE:M*soft*} == "")
|
|
TARGET_ABI= -gnueabihf
|
|
.elif ${TARGET_ARCH:Marm*}
|
|
TARGET_ABI= -gnueabi
|
|
.else
|
|
TARGET_ABI=
|
|
.endif
|
|
VENDOR= unknown
|
|
OS_VERSION= freebsd12.0
|
|
|
|
LLVM_TARGET_TRIPLE?= ${TARGET_ARCH:C/amd64/x86_64/:C/arm64/aarch64/}-${VENDOR}-${OS_VERSION}${TARGET_ABI}
|
|
LLVM_BUILD_TRIPLE?= ${BUILD_ARCH:C/amd64/x86_64/:C/arm64/aarch64/}-${VENDOR}-${OS_VERSION}
|
|
|
|
CFLAGS+= -DLLVM_DEFAULT_TARGET_TRIPLE=\"${LLVM_TARGET_TRIPLE}\"
|
|
CFLAGS+= -DLLVM_HOST_TRIPLE=\"${LLVM_BUILD_TRIPLE}\"
|
|
CFLAGS+= -DDEFAULT_SYSROOT=\"${TOOLS_PREFIX}\"
|
|
|
|
CFLAGS+= -ffunction-sections
|
|
CFLAGS+= -fdata-sections
|
|
LDFLAGS+= -Wl,--gc-sections
|
|
|
|
CXXFLAGS+= -std=c++11
|
|
CXXFLAGS+= -fno-exceptions
|
|
CXXFLAGS+= -fno-rtti
|
|
CXXFLAGS.clang+= -stdlib=libc++
|
|
|
|
.if ${MACHINE_CPUARCH} == "arm"
|
|
STATIC_CFLAGS+= -mlong-calls
|
|
STATIC_CXXFLAGS+= -mlong-calls
|
|
.endif
|