aboutsummaryrefslogtreecommitdiff
path: root/gnu/lib
diff options
context:
space:
mode:
authorJuli Mallett <jmallett@FreeBSD.org>2012-03-29 02:54:35 +0000
committerJuli Mallett <jmallett@FreeBSD.org>2012-03-29 02:54:35 +0000
commit84db023ec18b6681d9fbc9eebb1ac6dbfe6c9e01 (patch)
tree1fac0394055b095aec90d117db2f722cff6a8dcb /gnu/lib
parentd31f470d15c45c3e9e32a9d3195623c07a34fe8b (diff)
downloadsrc-84db023ec18b6681d9fbc9eebb1ac6dbfe6c9e01.tar.gz
src-84db023ec18b6681d9fbc9eebb1ac6dbfe6c9e01.zip
Assume a big-endian default on MIPS and drop the "eb" suffix from MACHINE_ARCH.
This makes our naming scheme more closely match other systems and the expectations of much third-party software. MIPS builds which are little-endian should require and exhibit no changes. Big-endian TARGET_ARCHes must be changed: From: To: mipseb mips mipsn32eb mipsn32 mips64eb mips64 An entry has been added to UPDATING and some foot-shooting protection (complete with warnings which should become errors in the near future) to the top-level base system Makefile.
Notes
Notes: svn path=/head/; revision=233644
Diffstat (limited to 'gnu/lib')
-rw-r--r--gnu/lib/libgcc/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/lib/libgcc/Makefile b/gnu/lib/libgcc/Makefile
index 7f6fc0d8ff64..2296d19d5209 100644
--- a/gnu/lib/libgcc/Makefile
+++ b/gnu/lib/libgcc/Makefile
@@ -122,7 +122,7 @@ LIB2FUNCS_EXTRA = floatunsidf.c floatunsisf.c
.if ${TARGET_CPUARCH} == mips
LIB2FUNCS_EXTRA = floatunsidf.c floatunsisf.c
# ABIs other than o32 need this
-.if ${TARGET_ARCH:Mmipse[lb]} == ""
+.if ${TARGET_ARCH} != "mips" && ${TARGET_ARCH} != "mipsel"
LIB2FUNCS_EXTRA+= floatdidf.c fixunsdfsi.c
LIB2FUNCS_EXTRA+= floatdisf.c floatundidf.c
LIB2FUNCS_EXTRA+= fixsfdi.c floatundisf.c