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/stdio/mod.rs | |
| 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/stdio/mod.rs')
| -rw-r--r-- | library/std/src/sys/stdio/mod.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/library/std/src/sys/stdio/mod.rs b/library/std/src/sys/stdio/mod.rs index 7436e4d9de4..404ac877926 100644 --- a/library/std/src/sys/stdio/mod.rs +++ b/library/std/src/sys/stdio/mod.rs @@ -29,6 +29,10 @@ cfg_select! { mod uefi; pub use uefi::*; } + target_os = "vexos" => { + mod vexos; + pub use vexos::*; + } all(target_os = "wasi", target_env = "p1") => { mod wasip1; pub use wasip1::*; |
