diff options
author | kan <kan@FreeBSD.org> | 2010-12-29 17:12:05 +0000 |
---|---|---|
committer | kan <kan@FreeBSD.org> | 2010-12-29 17:12:05 +0000 |
commit | 1e202d12a56c1e7e35ce85417359064e5092a6b4 (patch) | |
tree | ac4bf0e8f0a2d5abc4f3394765a34efbff39d9d6 | |
parent | 10c0dabcb43ccde96ef8a47fc175779b3e64eab5 (diff) | |
download | FreeBSD-src-1e202d12a56c1e7e35ce85417359064e5092a6b4.zip FreeBSD-src-1e202d12a56c1e7e35ce85417359064e5092a6b4.tar.gz |
Switch mips architectures back to libgcc.
MIPS64 n64 binaries are broken with libcompiler_rt at this time.
Switch mips back to libgcc until the cause of breakage is analyzed
and fixed.
-rw-r--r-- | gnu/lib/libgcc/Makefile | 2 | ||||
-rw-r--r-- | lib/libcompiler_rt/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/gnu/lib/libgcc/Makefile b/gnu/lib/libgcc/Makefile index 4752400..4a9d12f 100644 --- a/gnu/lib/libgcc/Makefile +++ b/gnu/lib/libgcc/Makefile @@ -15,7 +15,7 @@ MK_SSP= no .include "${.CURDIR}/../../usr.bin/cc/Makefile.tgt" -.if ${TARGET_CPUARCH} == "sparc64" +.if ${TARGET_CPUARCH} == "sparc64" || ${TARGET_CPUARCH} == "mips" LIB= gcc .endif diff --git a/lib/libcompiler_rt/Makefile b/lib/libcompiler_rt/Makefile index 103bb8c..f27dcf5 100644 --- a/lib/libcompiler_rt/Makefile +++ b/lib/libcompiler_rt/Makefile @@ -147,7 +147,7 @@ SRCS+= ${file}.c . endif .endfor -.if ${MACHINE_CPUARCH} != "sparc64" +.if ${MACHINE_CPUARCH} != "sparc64" && ${MACHINE_CPUARCH} != "mips" . if ${MK_INSTALLLIB} != "no" SYMLINKS+=libcompiler_rt.a ${LIBDIR}/libgcc.a . endif |