Skip to content

Commit f5dd3d1

Browse files
committed
Update Trusty support to account for recent libstd reorganization
1 parent 0b1a7ab commit f5dd3d1

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

library/std/src/sys/pal/trusty/mod.rs

-7
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,12 @@ pub mod args;
77
mod common;
88
#[path = "../unsupported/env.rs"]
99
pub mod env;
10-
#[path = "../unsupported/fs.rs"]
11-
pub mod fs;
12-
#[path = "../unsupported/io.rs"]
13-
pub mod io;
14-
#[path = "../unsupported/net.rs"]
15-
pub mod net;
1610
#[path = "../unsupported/os.rs"]
1711
pub mod os;
1812
#[path = "../unsupported/pipe.rs"]
1913
pub mod pipe;
2014
#[path = "../unsupported/process.rs"]
2115
pub mod process;
22-
pub mod stdio;
2316
#[path = "../unsupported/thread.rs"]
2417
pub mod thread;
2518
#[path = "../unsupported/time.rs"]

library/std/src/sys/stdio/mod.rs

+3
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ cfg_if::cfg_if! {
1919
} else if #[cfg(target_os = "teeos")] {
2020
mod teeos;
2121
pub use teeos::*;
22+
} else if #[cfg(target_os = "trusty")] {
23+
mod trusty;
24+
pub use trusty::*;
2225
} else if #[cfg(target_os = "uefi")] {
2326
mod uefi;
2427
pub use uefi::*;

0 commit comments

Comments
 (0)