From ccc4cdcda7eddbcc04ddc049ece089266e5adb0a Mon Sep 17 00:00:00 2001 From: Jan Beich Date: Wed, 8 Sep 2021 14:38:29 +0000 Subject: [PATCH] textproc/ripgrep: limit unstable rust features after 6bebfaa8a06c PR: 258367 Approved by: Petteri Valkonen (maintainer) --- textproc/ripgrep/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/textproc/ripgrep/Makefile b/textproc/ripgrep/Makefile index 58dd019ca06f..6c24406537bc 100644 --- a/textproc/ripgrep/Makefile +++ b/textproc/ripgrep/Makefile @@ -110,7 +110,7 @@ PCRE2_VARS= CARGO_FEATURES+=pcre2 # simd crate uses cfg_target_feature which isn't stable yet, so unlock # 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_MAKE_ENV= RUSTC_BOOTSTRAP=encoding_rs,packed_simd_2 SIMD_VARS= CARGO_FEATURES+=simd-accel ${SIMD_VARS_${ARCH}} SIMD_VARS_i386= RUSTFLAGS+="-C target-feature=+sse2"