Skip to content

Commit

Permalink
Auto merge of #3333 - Sword-Destiny:main, r=JohnTitor
Browse files Browse the repository at this point in the history
Add teeos libc

Add libc for teeos(aarch64-unknown-teeos)
  • Loading branch information
bors committed Sep 21, 2023
2 parents 7a012b6 + f054dcf commit a32b0ba
Show file tree
Hide file tree
Showing 2 changed files with 1,383 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/lib.rs
Expand Up @@ -139,6 +139,12 @@ cfg_if! {

mod hermit;
pub use hermit::*;
} else if #[cfg(target_os = "teeos")] {
mod fixed_width_ints;
pub use fixed_width_ints::*;

mod teeos;
pub use teeos::*;
} else if #[cfg(all(target_env = "sgx", target_vendor = "fortanix"))] {
mod fixed_width_ints;
pub use fixed_width_ints::*;
Expand Down

0 comments on commit a32b0ba

Please sign in to comment.