View | Details | Raw Unified | Return to bug 267729
Collapse All | Expand All

(-)b/lang/see/Makefile (-3 lines)
Lines 18-26 LICENSE_FILE_BSD3CLAUSE= ${WRKSRC}/COPYING Link Here
18
LICENSE_FILE_DTOA.C=	${WRKSRC}/COPYING
18
LICENSE_FILE_DTOA.C=	${WRKSRC}/COPYING
19
LICENSE_PERMS_DTOA.C=	dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
19
LICENSE_PERMS_DTOA.C=	dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
20
20
21
BROKEN_aarch64=	fails to build: error: "Exactly one of IEEE_8087, IEEE_MC68k, VAX, or IBM should be defined."
22
BROKEN_riscv64=	fails to build: error: "Exactly one of IEEE_8087, IEEE_MC68k, VAX, or IBM should be defined."
23
24
OPTIONS_DEFINE=	GC DEBUG DOCS
21
OPTIONS_DEFINE=	GC DEBUG DOCS
25
OPTIONS_DEFAULT=	GC
22
OPTIONS_DEFAULT=	GC
26
GC_DESC=	Use Boehm-Weiser garbage collection package
23
GC_DESC=	Use Boehm-Weiser garbage collection package
(-)b/lang/see/files/patch-libsee_dtoa__config.h (-1 / +12 lines)
Added Link Here
0
- 
1
--- libsee/dtoa_config.h.orig	2022-11-12 15:54:29 UTC
2
+++ libsee/dtoa_config.h
3
@@ -11,7 +11,8 @@
4
 
5
 #include <see/type.h>
6
 
7
-#if defined(__i386__) || defined(__amd64__) || defined(__ia64__) || defined(__alpha__)
8
+#if defined(__i386__) || defined(__amd64__) || defined(__ia64__) || defined(__alpha__) \
9
+    || defined(__arm__) || defined(__aarch64__) || defined(__riscv)
10
 #   define IEEE_8087
11
 #endif
12
 

Return to bug 267729