Date: Wed, 19 May 2021 04:07:47 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: f9c410bc0681 - main - lang/opencoarrays: Improve BROKEN lines Message-ID: <202105190407.14J47lM9017520@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=f9c410bc06813b982a665a469b4606ff071db4ce commit f9c410bc06813b982a665a469b4606ff071db4ce Author: Yuri Victorovich <yuri@FreeBSD.org> AuthorDate: 2021-05-19 04:06:28 +0000 Commit: Yuri Victorovich <yuri@FreeBSD.org> CommitDate: 2021-05-19 04:07:43 +0000 lang/opencoarrays: Improve BROKEN lines The core reason is lack of IEEE754 support in gcc. --- lang/opencoarrays/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lang/opencoarrays/Makefile b/lang/opencoarrays/Makefile index e21d80c5da52..c1fc30a961fd 100644 --- a/lang/opencoarrays/Makefile +++ b/lang/opencoarrays/Makefile @@ -10,9 +10,9 @@ COMMENT= Transport layer for coarray Fortran compilers LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -BROKEN_aarch64= fails to build: Can't open module file 'ieee_arithmetic.mod' for reading at (1): No such file or directory -BROKEN_FreeBSD_12_powerpc64= fails to build: CMake Warning at CMakeLists.txt:280 (message): Could not find all MPI components! -BROKEN_FreeBSD_13_powerpc64= fails to build: Can't open module file 'ieee_arithmetic.mod' for reading at (1): No such file or directory +.for arch in aarch64 powerpc powerpc64 powerpc64le +BROKEN_${arch}= Lack of IEEE754 support in gcc causes "Cannot find an intrinsic module named 'ieee_arithmetic'", see bug#255890 +.endfor BUILD_DEPENDS= bash:shells/bash RUN_DEPENDS= bash:shells/bash
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202105190407.14J47lM9017520>