8f3b60c5f1
* Don't test MACHINE, it's irrelevant to userland and should never be used in userland Makefiles. * If we match armv[67] and CPUTYPE is undefined OR it doesn't have 'soft' in it, choose armhf. * Add a note that the soft float on armv[67] may be broken. Sponsored by: Netflix
39 lines
903 B
Makefile
39 lines
903 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.compiler.mk>
|
|
|
|
# armv[67] is a bit special since we allow a soft-floating version via
|
|
# CPUTYPE matching *soft*. This variant is may not actually work though.
|
|
.if ${MACHINE_ARCH:Marmv[67]*} != "" && \
|
|
(!defined(CPUTYPE) || ${CPUTYPE:M*soft*} == "")
|
|
CRTARCH= armhf
|
|
.endif
|
|
CRTARCH?= ${MACHINE_CPUARCH:C/amd64/x86_64/}
|
|
CRTSRC= ${SRCTOP}/contrib/compiler-rt
|
|
|
|
.PATH: ${CRTSRC}/lib
|
|
|
|
CLANGDIR= /usr/lib/clang/5.0.0
|
|
LIBDIR= ${CLANGDIR}/lib/freebsd
|
|
|
|
NO_PIC=
|
|
MK_PROFILE= no
|
|
|
|
WARNS?= 0
|
|
|
|
SSP_CFLAGS=
|
|
CFLAGS+= -DNDEBUG
|
|
CFLAGS+= ${PICFLAG}
|
|
CFLAGS+= -fno-builtin
|
|
CFLAGS+= -fno-exceptions
|
|
CXXFLAGS+= -fno-rtti
|
|
.if ${COMPILER_TYPE} == clang && ${COMPILER_VERSION} >= 30700
|
|
CFLAGS+= -fno-sanitize=safe-stack
|
|
.endif
|
|
CFLAGS+= -fno-stack-protector
|
|
CFLAGS+= -funwind-tables
|
|
CXXFLAGS+= -fvisibility-inlines-hidden
|
|
CXXFLAGS+= -fvisibility=hidden
|
|
CFLAGS+= -I${CRTSRC}/lib
|
|
CXXFLAGS+= -std=c++11
|