diff options
author | Yuri Victorovich <yuri@FreeBSD.org> | 2024-05-20 15:22:04 +0000 |
---|---|---|
committer | Yuri Victorovich <yuri@FreeBSD.org> | 2024-05-20 16:59:05 +0000 |
commit | 2be6d82581afcadc3852896e2807dbd1b9810566 (patch) | |
tree | c1f2892b4e1174998cfbaf1b15280f58f1a9b34f /math | |
parent | 2c60df47e7358fb707b3909937d5c914b6f694c3 (diff) |
math/kamis: Broken where OpenMP isn't available
Reported by: fallout
(cherry picked from commit 2e320ea4bc9e19b782f728680e9560642f5bca09)
Diffstat (limited to 'math')
-rw-r--r-- | math/kamis/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/math/kamis/Makefile b/math/kamis/Makefile index 6ee28c1dbd37..d33923150cca 100644 --- a/math/kamis/Makefile +++ b/math/kamis/Makefile @@ -10,13 +10,13 @@ WWW= https://karlsruhemis.github.io/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -BROKEN_armv7= gcc13 fails: error: use of built-in trait '__remove_cvref(_InIter1)' in function signature, see https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=278630 +#BROKEN_armv7= gcc13 fails: error: use of built-in trait '__remove_cvref(_InIter1)' in function signature, see https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=278630 USES= cmake USE_LDCONFIG= yes .if !exists(/usr/include/omp.h) -USES+= compiler:gcc-c++11-lib +BROKEN= requires OpenMP support that is missing on this architecture .endif USE_GITHUB= yes |