diff options
author | Marius Strobl <marius@FreeBSD.org> | 2012-05-15 22:47:34 +0000 |
---|---|---|
committer | Marius Strobl <marius@FreeBSD.org> | 2012-05-15 22:47:34 +0000 |
commit | 45e2c46b37b36599380563b1d31eaf71089b771c (patch) | |
tree | f9b3183020894c88b6a6baea57a894d7b6c110b2 | |
parent | 0fb6d589e1d2cbef5acdb57cc5779f1279cd1b71 (diff) |
Switch sparc64 to using libcompiler_rt; since r230021 we have a workaround
in place allowing it to be used there and since r235388 (see also r235486)
we also have usable div/mod optimizations like libgcc has.
Notes
Notes:
svn path=/head/; revision=235487
-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 47829ca3bd28..9c543773216e 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" || ${TARGET_CPUARCH} == "mips" +.if ${TARGET_CPUARCH} == "mips" LIB= gcc .endif diff --git a/lib/libcompiler_rt/Makefile b/lib/libcompiler_rt/Makefile index ff9daad1649d..84f9b368c137 100644 --- a/lib/libcompiler_rt/Makefile +++ b/lib/libcompiler_rt/Makefile @@ -176,7 +176,7 @@ SRCS+= ${file}.c . endif .endfor -.if ${MACHINE_CPUARCH} != "sparc64" && ${MACHINE_CPUARCH} != "mips" +.if ${MACHINE_CPUARCH} != "mips" . if ${MK_INSTALLLIB} != "no" SYMLINKS+=libcompiler_rt.a ${LIBDIR}/libgcc.a . endif |