add teeos std impl

Signed-off-by: 袁浩 <yuanhao34@huawei.com>
This commit is contained in:
袁浩
2023-10-09 11:27:11 +08:00
committed by Sword-Destiny
parent 28968414c5
commit e353eb91fb
18 changed files with 1190 additions and 10 deletions

View File

@@ -53,6 +53,9 @@ cfg_if::cfg_if! {
} else if #[cfg(all(target_vendor = "fortanix", target_env = "sgx"))] {
mod sgx;
pub use self::sgx::*;
} else if #[cfg(target_os = "teeos")] {
mod teeos;
pub use self::teeos::*;
} else {
mod unsupported;
pub use self::unsupported::*;