Date: Tue, 26 May 2020 01:35:21 +0000 (UTC) From: Mark Linimon <linimon@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r536555 - branches/2020Q2/math/tblis Message-ID: <202005260135.04Q1ZLBA031215@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202005260135.04Q1ZLBA031215>