We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
armv7
/proc/cpuinfo
1 parent a36226b commit 7ee4c2aCopy full SHA for 7ee4c2a
rustup-init.sh
@@ -540,7 +540,7 @@ get_architecture() {
540
# and fall back to arm.
541
# See https://github.com/rust-lang/rustup.rs/issues/587.
542
if [ "$_ostype" = "unknown-linux-gnueabihf" ] && [ "$_cputype" = armv7 ]; then
543
- if ensure grep '^Features' /proc/cpuinfo | grep -E -q -v 'neon|simd'; then
+ if ! (ensure grep '^Features' /proc/cpuinfo | grep -E -q 'neon|simd') ; then
544
# At least one processor does not have NEON (which is asimd on armv8+).
545
_cputype=arm
546
fi
0 commit comments