mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-27 11:55:06 +00:00
Fix n32 compile.
These changes are needed to fix n32 compile after the recent change of mips n32 MACHINE_ARCH to mipsn32eb/mipsn32el. Reviewed by: imp, bz (earlier version)
This commit is contained in:
parent
0fafe07ff3
commit
7b87c35eba
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=217942
@ -121,8 +121,8 @@ LIB2FUNCS_EXTRA = floatunsidf.c floatunsisf.c
|
||||
|
||||
.if ${TARGET_CPUARCH} == mips
|
||||
LIB2FUNCS_EXTRA = floatunsidf.c floatunsisf.c
|
||||
# XXX do we need n32 here?
|
||||
.if ${TARGET_ARCH:Mmips64*} != ""
|
||||
# ABIs other than o32 need this
|
||||
.if ${TARGET_ARCH:Mmipse[lb]} == ""
|
||||
LIB2FUNCS_EXTRA+= floatdidf.c fixunsdfsi.c
|
||||
LIB2FUNCS_EXTRA+= floatdisf.c floatundidf.c
|
||||
LIB2FUNCS_EXTRA+= fixsfdi.c floatundisf.c
|
||||
|
@ -25,7 +25,7 @@ VERSION_MAP= ${SRCDIR}/libgomp.map
|
||||
# Target-specific OpenMP configuration
|
||||
.if ${MACHINE_CPUARCH} == arm || ${MACHINE_CPUARCH} == i386 || \
|
||||
${MACHINE_ARCH} == powerpc || \
|
||||
${MACHINE_ARCH} == mipsel || ${MACHINE_ARCH} == mipseb
|
||||
(${MACHINE_CPUARCH} == mips && ${MACHINE_ARCH:Mmips64*} == "")
|
||||
OMP_LOCK_ALIGN = 4
|
||||
OMP_LOCK_KIND= 4
|
||||
OMP_LOCK_SIZE= 4
|
||||
|
@ -28,7 +28,7 @@ SRCDIR= ${.CURDIR}/${RELSRC}
|
||||
|
||||
.if ${TARGET_CPUARCH} == "arm" || ${TARGET_CPUARCH} == "i386" || \
|
||||
${TARGET_ARCH} == "powerpc" || \
|
||||
${TARGET_ARCH} == "mipsel" || ${TARGET_ARCH} == "mipseb"
|
||||
(${TARGET_CPUARCH} == "mips" && ${TARGET_ARCH:Mmips64*} == "")
|
||||
CFLAGS+= -DBFD_DEFAULT_TARGET_SIZE=32
|
||||
.else
|
||||
CFLAGS+= -DBFD_DEFAULT_TARGET_SIZE=64
|
||||
|
@ -68,6 +68,7 @@ NOASM=
|
||||
${LIBC_ARCH} != "ia64" && \
|
||||
${LIBC_ARCH} != "powerpc64" && \
|
||||
${LIBC_ARCH} != "sparc64" && \
|
||||
${MACHINE_ARCH:Mmipsn32*} == "" && \
|
||||
${MACHINE_ARCH:Mmips64*} == ""
|
||||
.include "${.CURDIR}/quad/Makefile.inc"
|
||||
.endif
|
||||
|
@ -1,6 +1,7 @@
|
||||
# $FreeBSD$
|
||||
|
||||
SUBDIR:= ${SUBDIR:Nsysinstall}
|
||||
.if ${MACHINE_ARCH:Mmips64*} != ""
|
||||
# uathload broken for n32 and n64 due to toolchain issues
|
||||
.if ${MACHINE_ARCH:Mmipse[lb]} == ""
|
||||
SUBDIR:= ${SUBDIR:Nuathload}
|
||||
.endif
|
||||
|
Loading…
Reference in New Issue
Block a user