We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2fc6dc commit 976a35eCopy full SHA for 976a35e
library/std/src/sys/alloc/mod.rs
@@ -90,5 +90,7 @@ cfg_if::cfg_if! {
90
mod xous;
91
} else if #[cfg(target_os = "zkvm")] {
92
mod zkvm;
93
+ } else if #[cfg(target_os = "vexos")] {
94
+ mod vexos;
95
}
96
library/std/src/sys/pal/vexos/alloc.rs renamed to library/std/src/sys/alloc/vexos.rs
@@ -1,3 +1,6 @@
1
+// FIXME(static_mut_refs): Do not allow `static_mut_refs` lint
2
+#![allow(static_mut_refs)]
3
+
4
use crate::alloc::{GlobalAlloc, Layout, System};
5
use crate::ptr;
6
use crate::sync::atomic::{AtomicBool, Ordering};
0 commit comments