aboutsummaryrefslogtreecommitdiff
path: root/Makefile.inc1
diff options
context:
space:
mode:
authorBryan Drewery <bdrewery@FreeBSD.org>2017-02-18 00:08:13 +0000
committerBryan Drewery <bdrewery@FreeBSD.org>2017-02-18 00:08:13 +0000
commit68a558eca22df15b9dc148ef442b2b169ba25282 (patch)
tree250419e5d4582b6d6f6852d9661a139b12001fd0 /Makefile.inc1
parentce017db11c3b3cc59cb586aa546090fcbe9e40bc (diff)
downloadsrc-68a558eca22df15b9dc148ef442b2b169ba25282.tar.gz
src-68a558eca22df15b9dc148ef442b2b169ba25282.zip
xdev: Fix after libc++ update in r300873.
The xdev build needed the same fixes as libcompat and external toolchain support needed for handling of --sysroot, -L, -B, etc. MFC after: 2 weeks Sponsored by: Dell EMC Isilon
Notes
Notes: svn path=/head/; revision=313907
Diffstat (limited to 'Makefile.inc1')
-rw-r--r--Makefile.inc123
1 files changed, 19 insertions, 4 deletions
diff --git a/Makefile.inc1 b/Makefile.inc1
index 5bbc81d932d3..6657f3967139 100644
--- a/Makefile.inc1
+++ b/Makefile.inc1
@@ -2514,10 +2514,25 @@ CDBENV=MAKEOBJDIRPREFIX=${MAKEOBJDIRPREFIX}/${XDDIR} \
INSTALL="sh ${.CURDIR}/tools/install.sh"
CDENV= ${CDBENV} \
TOOLS_PREFIX=${XDTP}
-CD2CFLAGS=-isystem ${XDDESTDIR}/usr/include -L${XDDESTDIR}/usr/lib \
- --sysroot=${XDDESTDIR}/ -B${XDDESTDIR}/usr/libexec \
- -B${XDDESTDIR}/usr/bin -B${XDDESTDIR}/usr/lib
-CD2ENV=${CDENV} CC="${CC} ${CD2CFLAGS}" CXX="${CXX} ${CD2CFLAGS}" \
+
+.if ${WANT_COMPILER_TYPE} == gcc || \
+ (defined(X_COMPILER_TYPE) && ${X_COMPILER_TYPE} == gcc)
+# GCC requires -isystem and -L when using a cross-compiler. --sysroot
+# won't set header path and -L is used to ensure the base library path
+# is added before the port PREFIX library path.
+CD2CFLAGS+= -isystem ${XDDESTDIR}/usr/include -L${XDDESTDIR}/usr/lib
+# GCC requires -B to find /usr/lib/crti.o when using a cross-compiler
+# combined with --sysroot.
+CD2CFLAGS+= -B${XDDESTDIR}/usr/lib
+# Force using libc++ for external GCC.
+# XXX: This should be checking MK_GNUCXX == no
+.if ${X_COMPILER_VERSION} >= 40800
+CD2CXXFLAGS+= -isystem ${XDDESTDIR}/usr/include/c++/v1 -std=c++11 \
+ -nostdinc++
+.endif
+.endif
+CD2CFLAGS+= --sysroot=${XDDESTDIR}/
+CD2ENV=${CDENV} CC="${CC} ${CD2CFLAGS}" CXX="${CXX} ${CD2CXXFLAGS} ${CD2CFLAGS}" \
CPP="${CPP} ${CD2CFLAGS}" \
MACHINE=${TARGET} MACHINE_ARCH=${TARGET_ARCH}