diff options
| author | Tropical <42101043+Tropix126@users.noreply.github.com> | 2025-09-24 12:10:15 -0500 |
|---|---|---|
| committer | Tropical <42101043+Tropix126@users.noreply.github.com> | 2025-09-24 12:10:15 -0500 |
| commit | b2634e31c435aeff149c5660f9329a0578ad1e72 (patch) | |
| tree | b94e9505c4100a618cc00cda79b721c29f8ec4a1 /library/std/src/sys/thread_local | |
| parent | dd7fda570040e8a736f7d8bc28ddd1b444aabc82 (diff) | |
| download | rust-b2634e31c435aeff149c5660f9329a0578ad1e72.tar.gz rust-b2634e31c435aeff149c5660f9329a0578ad1e72.zip | |
std: add support for armv7a-vex-v5 target
Co-authored-by: Lewis McClelland <lewis@lewismcclelland.me>
Diffstat (limited to 'library/std/src/sys/thread_local')
| -rw-r--r-- | library/std/src/sys/thread_local/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/library/std/src/sys/thread_local/mod.rs b/library/std/src/sys/thread_local/mod.rs index cff74857c47..d5c795093cf 100644 --- a/library/std/src/sys/thread_local/mod.rs +++ b/library/std/src/sys/thread_local/mod.rs @@ -29,6 +29,7 @@ cfg_select! { target_os = "uefi", target_os = "zkvm", target_os = "trusty", + target_os = "vexos", ) => { mod no_threads; pub use no_threads::{EagerStorage, LazyStorage, thread_local_inner}; @@ -98,6 +99,7 @@ pub(crate) mod guard { target_os = "uefi", target_os = "zkvm", target_os = "trusty", + target_os = "vexos", ) => { pub(crate) fn enable() { // FIXME: Right now there is no concept of "thread exit" on |
