Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 17 Nov 2020 22:11:51 +0000 (UTC)
From:      Mark Linimon <linimon@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r555591 - head/math/blacs
Message-ID:  <202011172211.0AHMBpcu005453@repo.freebsd.org>

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



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