Skip to content

Commit a32b0ba

Browse files
committed
Auto merge of #3333 - Sword-Destiny:main, r=JohnTitor
Add teeos libc Add libc for teeos(aarch64-unknown-teeos)
2 parents 7a012b6 + f054dcf commit a32b0ba

File tree

2 files changed

+1383
-0
lines changed

2 files changed

+1383
-0
lines changed

src/lib.rs

+6
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,12 @@ cfg_if! {
139139

140140
mod hermit;
141141
pub use hermit::*;
142+
} else if #[cfg(target_os = "teeos")] {
143+
mod fixed_width_ints;
144+
pub use fixed_width_ints::*;
145+
146+
mod teeos;
147+
pub use teeos::*;
142148
} else if #[cfg(all(target_env = "sgx", target_vendor = "fortanix"))] {
143149
mod fixed_width_ints;
144150
pub use fixed_width_ints::*;

0 commit comments

Comments
 (0)