Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 8 May 2024 03:54:17 GMT
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: a4281a139829 - main - math/kamis: Disable gcc on omp-less architectures
Message-ID:  <202405080354.4483sHwD048940@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202405080354.4483sHwD048940>