diff options
author | 2020-08-14 14:30:06 +0000 | |
---|---|---|
committer | 2020-08-14 14:30:06 +0000 | |
commit | a6dd968cd1e98202a392cd94738a4e3fbd509d86 (patch) | |
tree | 6265ba964f5b04a24cfa652b16b8db1e93593f18 | |
parent | Zap LOOPALIVECNT (diff) | |
download | wireguard-openbsd-a6dd968cd1e98202a392cd94738a4e3fbd509d86.tar.xz wireguard-openbsd-a6dd968cd1e98202a392cd94738a4e3fbd509d86.zip |
Don't build double-double functions since long double is the same as double
on OpenBSD.
ok gkoehler@
-rw-r--r-- | gnu/lib/libcompiler_rt/Makefile | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/gnu/lib/libcompiler_rt/Makefile b/gnu/lib/libcompiler_rt/Makefile index 78ef6cc8ff5..73b900cc5a7 100644 --- a/gnu/lib/libcompiler_rt/Makefile +++ b/gnu/lib/libcompiler_rt/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.3 2020/08/11 06:38:59 patrick Exp $ +# $OpenBSD: Makefile,v 1.4 2020/08/14 14:30:06 kettenis Exp $ .include <bsd.own.mk> @@ -277,17 +277,9 @@ SRCS+= comparetf2.c \ .endif .if ${RTARCH} == "ppc" -SRCS+= atomic_lock_free.c \ - divtc3.c \ - fixtfdi.c \ - fixunstfdi.c \ - floatditf.c \ - floatunditf.c \ - gcc_qadd.c \ - gcc_qdiv.c \ - gcc_qmul.c \ - gcc_qsub.c \ - multc3.c +# Omit "double-double" functions since long double is the same as +# double on OpenBSD. +SRCS+= atomic_lock_free.c .endif .if ${RTARCH} == "sparc64" |