Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 17 Nov 2020 22:15:22 +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: r555593 - head/math/mumps4
Message-ID:  <202011172215.0AHMFMue005852@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: linimon
Date: Tue Nov 17 22:15:22 2020
New Revision: 555593
URL: https://svnweb.freebsd.org/changeset/ports/555593

Log:
  Add workaround for Fortran frontend in GCC 10.
  
  PR:		246700

Modified:
  head/math/mumps4/Makefile

Modified: head/math/mumps4/Makefile
==============================================================================
--- head/math/mumps4/Makefile	Tue Nov 17 22:14:15 2020	(r555592)
+++ head/math/mumps4/Makefile	Tue Nov 17 22:15:22 2020	(r555593)
@@ -61,6 +61,11 @@ BLASLIB=	-lblas
 #LAPACKLIB=	-llapack
 .endif
 
+.if ${GCC_DEFAULT} >= 10
+# workaround for Type mismatch in argument 's' at (1); passed INTEGER(4) to LOGICAL(4)
+FCFLAGS+=	-fallow-argument-mismatch
+.endif
+
 pre-configure:
 	${INSTALL_DATA} ${WRKSRC}/Make.inc/Makefile.inc.generic.SEQ \
 		${WRKSRC}/Makefile.inc



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