Unbreak amd64<->i386 cross builds.

This commit is contained in:
Nathan Whitehorn 2010-12-02 17:36:47 +00:00
parent e2c3e32a6c
commit 35d4aa10d7
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=216127

View File

@ -19,8 +19,9 @@ CFLAGS+= ${DRIVER_DEFINES}
SRCS= gcc.c opts-common.c options.c intl.c prefix.c version.c
.if ${TARGET_ARCH} == ${MACHINE_ARCH} && \
exists(${GCCDIR}/config/${GCC_CPU}/driver-${GCC_CPU}.c)
# Include -march=native support for native-ish compilers only
.if (${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "amd64") && \
${GCC_CPU} == "i386"
SRCS+= driver-${GCC_CPU}.c
.endif