summaryrefslogtreecommitdiff
path: root/gnu/lib
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@cvs.openbsd.org>2020-08-14 14:30:07 +0000
committerMark Kettenis <kettenis@cvs.openbsd.org>2020-08-14 14:30:07 +0000
commitb748c07312a26380d5858b5d2091cda185a01816 (patch)
tree7d2f85d6a03c9f2f671c5b25900955e39af10063 /gnu/lib
parent86ebbd33802574ab75025aeedeb70470e7c728ab (diff)
Don't build double-double functions since long double is the same as double
on OpenBSD. ok gkoehler@
Diffstat (limited to 'gnu/lib')
-rw-r--r--gnu/lib/libcompiler_rt/Makefile16
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"