mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-15 15:06:42 +00:00
We're going to have to use a TARGET_ARCH of "x86_64" rather than "x86-64"
to make building GCC happy.
This commit is contained in:
parent
5908354455
commit
1ca4970561
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=103257
@ -6,7 +6,7 @@ TARGET_ARCH?= ${MACHINE_ARCH}
|
||||
GCC_CPU= alpha
|
||||
.elif ${TARGET_ARCH} == "arm"
|
||||
GCC_CPU= arm
|
||||
.elif ${TARGET_ARCH} == "i386" || ${TARGET_ARCH} == "x86-64"
|
||||
.elif ${TARGET_ARCH} == "i386" || ${TARGET_ARCH} == "x86_64"
|
||||
GCC_CPU= i386
|
||||
.elif ${TARGET_ARCH} == "ia64"
|
||||
GCC_CPU= ia64
|
||||
|
@ -147,7 +147,7 @@ tconfig.h:
|
||||
.endif
|
||||
echo '#include "ansidecl.h"' >> ${.TARGET}
|
||||
echo '#include "${GCC_CPU}/${GCC_CPU}.h"' >> ${.TARGET}
|
||||
.if ${TARGET_ARCH} == "i386"
|
||||
.if ${TARGET_ARCH} == "i386" || ${TARGET_ARCH} == "x86_64"
|
||||
echo '#include "${GCC_CPU}/att.h"' >> ${.TARGET}
|
||||
.endif
|
||||
.if ${TARGET_ARCH} != "alpha"
|
||||
@ -160,13 +160,14 @@ tconfig.h:
|
||||
.if ${TARGET_ARCH} == "alpha"
|
||||
echo '#include "${GCC_CPU}/elf.h"' >> ${.TARGET}
|
||||
.endif
|
||||
.if ${TARGET_ARCH} != "i386"
|
||||
.if ${TARGET_ARCH} != "i386" && ${TARGET_ARCH} != "x86_64"
|
||||
.if exists(${GCCDIR}/config/${GCC_CPU}/sysv4.h)
|
||||
echo '#include "${GCC_CPU}/sysv4.h"' >> ${.TARGET}
|
||||
.endif
|
||||
.endif
|
||||
echo '#include "${GCC_CPU}/freebsd.h"' >> ${.TARGET}
|
||||
.if ${TARGET_ARCH} == "x86-64"
|
||||
.if ${TARGET_ARCH} == "x86_64"
|
||||
echo '#include "${GCC_CPU}/${TARGET_ARCH:S/_/-/}.h"' >> ${.TARGET}
|
||||
echo '#include "${GCC_CPU}/freebsd64.h"' >> ${.TARGET}
|
||||
.endif
|
||||
echo '#include "defaults.h"' >> ${.TARGET}
|
||||
|
@ -338,7 +338,7 @@
|
||||
/* #define SIZEOF_LONG 4 */
|
||||
#if defined(__i386__) || defined(__powerpc__) || defined(__strongarm__)
|
||||
#define SIZEOF_LONG SIZEOF_INT
|
||||
#elif defined(__alpha__) || defined(__sparc64__) || defined(__ia64__)
|
||||
#elif defined(__alpha__) || defined(__sparc64__) || defined(__ia64__) || defined(__x86_64__)
|
||||
#define SIZEOF_LONG SIZEOF_LONG_LONG
|
||||
#else
|
||||
#error "I don't know what arch this is."
|
||||
|
@ -4,7 +4,7 @@
|
||||
|
||||
.PATH: ${GCCDIR}/config/${GCC_CPU}
|
||||
|
||||
.if ${TARGET_ARCH} == "i386" || ${TARGET_ARCH} == "x86-64"
|
||||
.if ${TARGET_ARCH} == "i386" || ${TARGET_ARCH} == "x86_64"
|
||||
INCS= mmintrin.h xmmintrin.h
|
||||
.elif ${TARGET_ARCH} == "ia64"
|
||||
INCS= ia64intrin.h
|
||||
|
Loading…
Reference in New Issue
Block a user