svn commit: r555588 - head/science/berkeleygw

Mark Linimon linimon at FreeBSD.org
Tue Nov 17 21:37:50 UTC 2020


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>


More information about the svn-ports-all mailing list