git: a4281a139829 - main - math/kamis: Disable gcc on omp-less architectures
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 08 May 2024 03:54:17 UTC
The branch main has been updated by yuri: URL: https://cgit.FreeBSD.org/ports/commit/?id=a4281a139829fbe4aed5ec29f903e24b4c6f5548 commit a4281a139829fbe4aed5ec29f903e24b4c6f5548 Author: Yuri Victorovich <yuri@FreeBSD.org> AuthorDate: 2024-05-08 03:51:00 +0000 Commit: Yuri Victorovich <yuri@FreeBSD.org> CommitDate: 2024-05-08 03:53:17 +0000 math/kamis: Disable gcc on omp-less architectures ... to see if it now would build successfully. gcc-13 fails on armv7: error: use of built-in trait '__remove_cvref(_InIter1)' in function signature; use library traits instead --- math/kamis/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/math/kamis/Makefile b/math/kamis/Makefile index 6ee28c1dbd37..3e12d34d0b9a 100644 --- a/math/kamis/Makefile +++ b/math/kamis/Makefile @@ -10,14 +10,14 @@ 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 -.endif +#.if !exists(/usr/include/omp.h) +#USES+= compiler:gcc-c++11-lib +#.endif USE_GITHUB= yes GH_ACCOUNT= KarlsruheMIS