diff options
author | Yuri Victorovich <yuri@FreeBSD.org> | 2025-05-09 07:01:31 -0700 |
---|---|---|
committer | Yuri Victorovich <yuri@FreeBSD.org> | 2025-05-09 10:45:52 -0700 |
commit | 36700513373345fe405380f27f1e58213624c985 (patch) | |
tree | 21414af987294cbcc7d4fcd0998e6872ec127a01 | |
parent | misc/py-polars: Add comment (diff) |
textproc/jaq: Broken on i386
Reported by: fallout
-rw-r--r-- | textproc/jaq/Makefile | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/textproc/jaq/Makefile b/textproc/jaq/Makefile index fd9ce3630331..4c24987eb2f8 100644 --- a/textproc/jaq/Makefile +++ b/textproc/jaq/Makefile @@ -10,6 +10,8 @@ WWW= https://github.com/01mf02/jaq LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE-MIT +BROKEN_i386= compilation fails: undefined symbol: __atomic_load_8 + USES= cargo USE_GITHUB= yes GH_ACCOUNT= 01mf02 @@ -95,9 +97,4 @@ LIB_DEPENDS+= libatomic.so:lang/gcc${GCC_DEFAULT} LDFLAGS+= -L/usr/local/lib/gcc${GCC_DEFAULT} -latomic .endif -# attempt to fix build on i386, see https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=284196#c1 -.if ${ARCH} == i386 && !${CFLAGS:M-march=*} -CFLAGS+= -march=i586 -.endif - .include <bsd.port.mk> |