Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 17 Nov 2020 21:37:49 +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: r555588 - head/science/berkeleygw
Message-ID:  <202011172137.0AHLbnfc080739@repo.freebsd.org>

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

Log:
  Mark BROKEN on i386 and GCC 10:
  
    Type mismatch between actual argument at (1) and actual argument at (2) (INTEGER(4)/REAL(4)).
  
  Per the maintainer, this is probably an error in GCC 10's i386 Fortran
  frontend.  But, this should not hold up our update to GCC 10 as ports
  default.
  
  PR:		246700 (partial)
  Approved by:	maintainer

Modified:
  head/science/berkeleygw/Makefile

Modified: head/science/berkeleygw/Makefile
==============================================================================
--- head/science/berkeleygw/Makefile	Tue Nov 17 21:34:30 2020	(r555587)
+++ head/science/berkeleygw/Makefile	Tue Nov 17 21:37:49 2020	(r555588)
@@ -28,9 +28,15 @@ EXAMPLES_MAKE_ARGS=	INSTALL_EXAMPLES=yes
 
 PORTEXAMPLES=	*
 
+.include <bsd.port.pre.mk>
+
+.if ${ARCH} == i386 && ${GCC_DEFAULT} >= 10
+BROKEN=		f951: internal compiler error: Segmentation fault
+.endif
+
 post-patch:
 	@${LN} -s ${WRKSRC}/config/generic.serial.freebsd.mk ${WRKSRC}/arch.mk
 	@${LN} -s ${WRKSRC}/flavor_real.mk ${WRKSRC}/flavor.mk
 	@${FIND} ${WRKSRC} -name "script*" -o -name "*.scr" | ${XARGS} ${REINPLACE_CMD} -i '' 's|#! */bin/bash.*|#!/bin/sh|'
 
-.include <bsd.port.mk>
+.include <bsd.port.post.mk>



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