diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2018-12-25 09:20:50 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2018-12-25 09:20:50 +0000 |
commit | 058eda7321e910e6d5a7580c6d2e298b09474a57 (patch) | |
tree | 7eed458e359e6abfbdd3e56c7e27f13195ecbffb /lib | |
parent | 7dd4ca75be14b87c74f63c39b0be0185231bb123 (diff) |
Use the same additional arch specific files for sparc64 as is done for mips
or aarch64. Needed to build userland with clang.
OK visa@ kettenis@
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libcompiler_rt/Makefile | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/lib/libcompiler_rt/Makefile b/lib/libcompiler_rt/Makefile index 0940093525b..812bef29aea 100644 --- a/lib/libcompiler_rt/Makefile +++ b/lib/libcompiler_rt/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.13 2018/10/21 05:13:49 visa Exp $ +# $OpenBSD: Makefile,v 1.14 2018/12/25 09:20:49 claudio Exp $ .include <bsd.own.mk> @@ -287,6 +287,27 @@ SRCS+= divtc3.c \ multc3.c .endif +.if ${RTARCH} == "sparc64" +SRCS+= comparetf2.c \ + extenddftf2.c \ + extendsftf2.c \ + fixtfdi.c \ + fixtfsi.c \ + fixtfti.c \ + fixunstfdi.c \ + fixunstfsi.c \ + fixunstfti.c \ + floatditf.c \ + floatsitf.c \ + floattitf.c \ + floatunditf.c \ + floatunsitf.c \ + floatuntitf.c \ + multc3.c \ + trunctfdf2.c \ + trunctfsf2.c +.endif + .include <bsd.lib.mk> .else |