Fix avx check with newest nightly compiler (#13465) (#13809)

(cherry picked from commit c644b05c54)

Co-authored-by: sakridge <sakridge@gmail.com>
This commit is contained in:
mergify[bot]
2020-11-25 10:50:36 +00:00
committed by GitHub
parent 5dbec42394
commit 51e8872804

View File

@ -947,18 +947,22 @@ fn report_target_features() {
#[cfg(any(target_arch = "x86", target_arch = "x86_64"))] #[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
{ {
// Validator binaries built on a machine with AVX support will generate invalid opcodes unsafe { check_avx() };
// when run on machines without AVX causing a non-obvious process abort. Instead detect }
// the mismatch and error cleanly. }
#[target_feature(enable = "avx")]
{ // Validator binaries built on a machine with AVX support will generate invalid opcodes
if is_x86_feature_detected!("avx") { // when run on machines without AVX causing a non-obvious process abort. Instead detect
info!("AVX detected"); // the mismatch and error cleanly.
} else { #[target_feature(enable = "avx")]
error!("Your machine does not have AVX support, please rebuild from source on your machine"); unsafe fn check_avx() {
process::exit(1); if is_x86_feature_detected!("avx") {
} info!("AVX detected");
} } else {
error!(
"Your machine does not have AVX support, please rebuild from source on your machine"
);
process::exit(1);
} }
} }