svn commit: r536555 - branches/2020Q2/math/tblis

Mark Linimon linimon at FreeBSD.org
Tue May 26 01:35:21 UTC 2020


Author: linimon
Date: Tue May 26 01:35:20 2020
New Revision: 536555
URL: https://svnweb.freebsd.org/changeset/ports/536555

Log:
  MFH: r535699
  
  Mark as BROKEN on powerpc64:
  
    ./src/configs/include_configs.hpp:2:37: fatal error: configs/power7/config.hpp: No such file or directory
  
  Adding compiler:c++11-lang to USES merely uncovers this error on 12-STABLE;
  it does not fix the underlying problem.
  
  Approved by:	portmgr (tier-2 blanket)

Modified:
  branches/2020Q2/math/tblis/Makefile
Directory Properties:
  branches/2020Q2/   (props changed)

Modified: branches/2020Q2/math/tblis/Makefile
==============================================================================
--- branches/2020Q2/math/tblis/Makefile	Tue May 26 01:31:01 2020	(r536554)
+++ branches/2020Q2/math/tblis/Makefile	Tue May 26 01:35:20 2020	(r536555)
@@ -14,6 +14,7 @@ LICENSE_FILE=	${WRKSRC}/LICENSE
 
 BROKEN_aarch64=		fails to compile: include_configs.hpp:2:10: fatal error: 'configs/armv7a/config.hpp' file not found
 BROKEN_armv6=		fails to compile: include_configs.hpp:2:10: fatal error: 'configs/armv7a/config.hpp' file not found
+BROKEN_powerpc64=	fails to compile: include_configs.hpp:2:10: fatal error: 'configs/power7/config.hpp' file not found
 NOT_FOR_ARCHS=	i386
 NOT_FOR_ARCHS_REASON=	i386 requires SSE
 
@@ -21,7 +22,7 @@ OPTIONS_DEFINE=	PARA
 PARA_DESC=	use pthread parallelization
 OPTIONS_DEFAULT=	PARA
 
-USES=		gmake libtool
+USES=		compiler:c++11-lang gmake libtool
 USE_LDCONFIG=	yes
 
 USE_GITHUB=	yes


More information about the svn-ports-all mailing list