From owner-svn-ports-all@freebsd.org Wed Dec 5 05:19:30 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8915B132E422; Wed, 5 Dec 2018 05:19:30 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2FEAD847E5; Wed, 5 Dec 2018 05:19:30 +0000 (UTC) (envelope-from jbeich@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 111227EF8; Wed, 5 Dec 2018 05:19:30 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id wB55JTaO017791; Wed, 5 Dec 2018 05:19:29 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id wB55JTrF017790; Wed, 5 Dec 2018 05:19:29 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201812050519.wB55JTrF017790@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Wed, 5 Dec 2018 05:19:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r486651 - branches/2018Q4/textproc/ripgrep X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2018Q4/textproc/ripgrep X-SVN-Commit-Revision: 486651 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 2FEAD847E5 X-Spamd-Result: default: False [-0.88 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-0.48)[-0.476,0]; NEURAL_HAM_SHORT(-0.34)[-0.337,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-0.07)[-0.072,0] X-Rspamd-Server: mx1.freebsd.org 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: Wed, 05 Dec 2018 05:19:30 -0000 Author: jbeich Date: Wed Dec 5 05:19:29 2018 New Revision: 486651 URL: https://svnweb.freebsd.org/changeset/ports/486651 Log: MFH: r486650 textproc/ripgrep: unbreak AVX=on on i386 after r454995 error[E0432]: unresolved import `simd::x86::avx` --> cargo-crates/bytecount-0.3.2/src/lib.rs:49:16 | 49 | use simd::x86::avx::{LowHigh128, u8x32}; | ^^^ could not find `avx` in `x86` https://github.com/rust-lang/rust/issues/56527 Approved by: ports-secteam blanket Modified: branches/2018Q4/textproc/ripgrep/Makefile Directory Properties: branches/2018Q4/ (props changed) Modified: branches/2018Q4/textproc/ripgrep/Makefile ============================================================================== --- branches/2018Q4/textproc/ripgrep/Makefile Wed Dec 5 05:18:51 2018 (r486650) +++ branches/2018Q4/textproc/ripgrep/Makefile Wed Dec 5 05:19:29 2018 (r486651) @@ -96,7 +96,7 @@ AVX_IMPLIES= SIMD # unstable features similar to how lang/rust bootstraps. www/firefox # uses the same hack when building with --enable-rust-simd. SIMD_MAKE_ENV= RUSTC_BOOTSTRAP=1 -SIMD_VARS= CARGO_FEATURES+=simd-accel ${SIMD_VARS_${ARCH}} +SIMD_VARS= CARGO_FEATURES+=simd-accel ${SIMD_VARS_${ARCH}${PORT_OPTIONS:MAVX}} SIMD_VARS_i386= RUSTFLAGS+="-C target-feature=+sse2" post-patch: