freebsd-src/share/mk/src.init.mk
Simon J. Gerraty 0f87915f43 Remove unnecessary -isystem for host
Turns out we do not need -isystem/usr/include and
it can interfere with newer toolchains.

Reviewed by:	stevek
2023-09-28 14:19:25 -07:00

38 lines
655 B
Makefile

.if !target(__<src.init.mk>__)
__<src.init.mk>__:
.if !target(buildenv)
buildenv: .PHONY
${_+_}@env BUILDENV_DIR=${.CURDIR} ${MAKE} -C ${SRCTOP} buildenv
.endif
.if ${MACHINE:Nhost*} == ""
.if ${.MAKE.OS} != "FreeBSD"
# these won't work anyway - see tools/build/mk/Makefile.boot.pre
MK_DEBUG_FILES= no
MK_MAN= no
MK_PIE= no
MK_RETPOLINE= no
NO_SHARED= no
MK_TESTS= no
.-include <src.init.${.MAKE.OS:tl}.mk>
CFLAGS+= \
-DHAVE_NBTOOL_CONFIG_H=1 \
-I${SRCTOP}/tools/build/cross-build/include/common \
.endif
.if ${MK_host_egacy} == "yes"
.ifdef PROG
LOCAL_LIBRARIES+= egacy
LIBADD+= egacy
.endif
.endif
.endif
.endif # !target(__<src.init.mk>__)