svn commit: r535699 - head/math/tblis

Mark Linimon linimon at FreeBSD.org
Mon May 18 01:03:25 UTC 2020


Author: linimon
Date: Mon May 18 01:03:25 2020
New Revision: 535699
URL: https://svnweb.freebsd.org/changeset/ports/535699

Log:
  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.

Modified:
  head/math/tblis/Makefile

Modified: head/math/tblis/Makefile
==============================================================================
--- head/math/tblis/Makefile	Mon May 18 00:58:49 2020	(r535698)
+++ head/math/tblis/Makefile	Mon May 18 01:03:25 2020	(r535699)
@@ -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