Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 18 May 2020 01:03:25 +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: r535699 - head/math/tblis
Message-ID:  <202005180103.04I13PIC053127@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



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