Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 7 Apr 2020 08:57:27 +0000 (UTC)
From:      Thierry Thomas <thierry@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r530953 - in head/math: hpcombi libsemigroups
Message-ID:  <202004070857.0378vRP2062798@repo.freebsd.org>

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



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