From owner-svn-ports-all@freebsd.org Tue Apr 7 08:57:28 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 3D8322AF6DD; Tue, 7 Apr 2020 08:57:28 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48xLrm0yh9z4K1l; Tue, 7 Apr 2020 08:57:28 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 17DBE7114; Tue, 7 Apr 2020 08:57:28 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0378vRYI062800; Tue, 7 Apr 2020 08:57:27 GMT (envelope-from thierry@FreeBSD.org) Received: (from thierry@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0378vRP2062798; Tue, 7 Apr 2020 08:57:27 GMT (envelope-from thierry@FreeBSD.org) Message-Id: <202004070857.0378vRP2062798@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: thierry set sender to thierry@FreeBSD.org using -f From: Thierry Thomas Date: Tue, 7 Apr 2020 08:57:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r530953 - in head/math: hpcombi libsemigroups X-SVN-Group: ports-head X-SVN-Commit-Author: thierry X-SVN-Commit-Paths: in head/math: hpcombi libsemigroups X-SVN-Commit-Revision: 530953 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Apr 2020 08:57:28 -0000 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 -.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|' \