You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As noted in the error, importing "core::arch::asm" seems to fix it:
--- library/stdarch/crates/std_detect/src/detect/os/aarch64.rs.orig 2022-03-08 09:13:53.485340000 +0100
+++ library/stdarch/crates/std_detect/src/detect/os/aarch64.rs 2022-03-08 09:27:20.315462000 +0100
@@ -17,6 +17,7 @@
//! - [Linux documentation](https://www.kernel.org/doc/Documentation/arm64/cpu-feature-registers.txt)
use crate::detect::{cache, Feature};
+use core::arch::asm;
/// Try to read the features from the system registers.
///
error log:
The text was updated successfully, but these errors were encountered: