svn commit: r555591 - head/math/blacs
Mark Linimon
linimon at FreeBSD.org
Tue Nov 17 22:11:52 UTC 2020
Author: linimon
Date: Tue Nov 17 22:11:51 2020
New Revision: 555591
URL: https://svnweb.freebsd.org/changeset/ports/555591
Log:
Mark as BROKEN with GCC 10:
Rank mismatch between actual argument at (1) and actual argument at (2) (scalar and rank-1)
PR: 246700
Modified:
head/math/blacs/Makefile
Modified: head/math/blacs/Makefile
==============================================================================
--- head/math/blacs/Makefile Tue Nov 17 22:06:18 2020 (r555590)
+++ head/math/blacs/Makefile Tue Nov 17 22:11:51 2020 (r555591)
@@ -35,6 +35,11 @@ MPICH_EXTRA_PATCHES= ${FILESDIR}/Bmake.inc-mpich.diff
.include <bsd.port.pre.mk>
F77EXTRAFLAGS= #-w -fno-globals -fugly-complex
+.if ${GCC_DEFAULT} >= 10
+# workaround for Rank mismatch between actual argument at (1) and actual argument at (2) (scalar and rank-1)
+F77EXTRAFLAGS+= -fallow-argument-mismatch
+.endif
+
DEBUG_LEVEL= 0
.if ${ARCH} == "sparc64" || ${ARCH} == "amd64"
More information about the svn-ports-head
mailing list