svn commit: r530953 - in head/math: hpcombi libsemigroups

Thierry Thomas thierry at FreeBSD.org
Tue Apr 7 08:57:28 UTC 2020


Author: thierry
Date: Tue Apr  7 08:57:27 2020
New Revision: 530953
URL: https://svnweb.freebsd.org/changeset/ports/530953

Log:
  Disable HPCombi on i386:
  
    Intrinsic _mm_extract_epi64 not supported by compiler.
  
  Reported by:	pkg-fallout

Modified:
  head/math/hpcombi/Makefile
  head/math/libsemigroups/Makefile

Modified: head/math/hpcombi/Makefile
==============================================================================
--- head/math/hpcombi/Makefile	Tue Apr  7 07:57:22 2020	(r530952)
+++ head/math/hpcombi/Makefile	Tue Apr  7 08:57:27 2020	(r530953)
@@ -11,7 +11,7 @@ COMMENT=	Fast combinatorics in C++ using SSE/AVX instr
 
 LICENSE=	GPLv3
 
-ONLY_FOR_ARCHS=		amd64 i386
+ONLY_FOR_ARCHS=		amd64
 ONLY_FOR_ARCHS_REASON=	Uses Advanced Vector Extensions (AVX) instructions set
 
 BUILD_DEPENDS=	sparsehash>0:devel/sparsehash

Modified: head/math/libsemigroups/Makefile
==============================================================================
--- head/math/libsemigroups/Makefile	Tue Apr  7 07:57:22 2020	(r530952)
+++ head/math/libsemigroups/Makefile	Tue Apr  7 08:57:27 2020	(r530953)
@@ -25,12 +25,12 @@ TEST_TARGET=	check
 
 .include <bsd.port.pre.mk>
 
-.if ${ARCH} != amd64 && ${ARCH} != i386
+.if ${ARCH} != amd64
 CONFIGURE_ARGS+=	--disable-hpcombi
 .endif
 
 pre-configure:
-.if ${ARCH} == amd64 || ${ARCH} == i386
+.if ${ARCH} == amd64
 	${REINPLACE_CMD} -e 's|$$srcdir/extern/HPCombi|${LOCALBASE}/share/HPCombi|'	\
 		${WRKSRC}/m4/ax_check_hpcombi.m4
 	${REINPLACE_CMD} -e 's|extern/HPCombi/include|${LOCALBASE}/include/HPCombi|'	\


More information about the svn-ports-all mailing list