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.
This commit is contained in:
Alexander Kabaev 2010-12-29 17:12:05 +00:00
parent 4d05e7b184
commit d933fa1a10
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=216804
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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