Bound sgx target_env with fortanix as target_vendor
Signed-off-by: Yu Ding <dingelish@gmail.com>
This commit is contained in:
parent
6efaef6189
commit
d04f5208ba
6 changed files with 20 additions and 12 deletions
|
|
@ -37,7 +37,7 @@ rustc_lsan = { path = "../librustc_lsan" }
|
|||
rustc_msan = { path = "../librustc_msan" }
|
||||
rustc_tsan = { path = "../librustc_tsan" }
|
||||
|
||||
[target.'cfg(any(all(target_arch = "wasm32", not(target_os = "emscripten")), target_env = "sgx"))'.dependencies]
|
||||
[target.'cfg(any(all(target_arch = "wasm32", not(target_os = "emscripten")), all(target_vendor = "fortanix", target_env = "sgx")))'.dependencies]
|
||||
dlmalloc = { version = "0.1", features = ['rustc-dep-of-std'] }
|
||||
|
||||
[target.x86_64-fortanix-unknown-sgx.dependencies]
|
||||
|
|
|
|||
|
|
@ -302,9 +302,10 @@
|
|||
#![feature(non_exhaustive)]
|
||||
#![feature(alloc_layout_extra)]
|
||||
#![feature(maybe_uninit)]
|
||||
#![cfg_attr(target_env = "sgx", feature(global_asm, range_contains, slice_index_methods,
|
||||
decl_macro, coerce_unsized, sgx_platform,
|
||||
min_const_unsafe_fn))]
|
||||
#![cfg_attr(all(target_vendor = "fortanix", target_env = "sgx"),
|
||||
feature(global_asm, range_contains, slice_index_methods,
|
||||
decl_macro, coerce_unsized, sgx_platform,
|
||||
min_const_unsafe_fn))]
|
||||
|
||||
#![default_lib_allocator]
|
||||
|
||||
|
|
@ -347,7 +348,7 @@ extern crate backtrace_sys;
|
|||
// testing gives test-std access to real-std lang items and globals. See #2912
|
||||
#[cfg(test)] extern crate std as realstd;
|
||||
|
||||
#[cfg(target_env = "sgx")]
|
||||
#[cfg(all(target_vendor = "fortanix", target_env = "sgx"))]
|
||||
#[macro_use]
|
||||
#[allow(unused_imports)] // FIXME: without `#[macro_use]`, get error: “cannot
|
||||
// determine resolution for the macro `usercalls_asm`”
|
||||
|
|
|
|||
|
|
@ -38,7 +38,7 @@ cfg_if! {
|
|||
} else if #[cfg(target_arch = "wasm32")] {
|
||||
mod wasm;
|
||||
pub use self::wasm::*;
|
||||
} else if #[cfg(target_env = "sgx")] {
|
||||
} else if #[cfg(all(target_vendor = "fortanix", target_env = "sgx"))] {
|
||||
mod sgx;
|
||||
pub use self::sgx::*;
|
||||
} else {
|
||||
|
|
@ -55,7 +55,9 @@ cfg_if! {
|
|||
if #[cfg(any(unix, target_os = "redox"))] {
|
||||
// On unix we'll document what's already available
|
||||
pub use self::ext as unix_ext;
|
||||
} else if #[cfg(any(target_os = "cloudabi", target_arch = "wasm32", target_env = "sgx"))] {
|
||||
} else if #[cfg(any(target_os = "cloudabi",
|
||||
target_arch = "wasm32",
|
||||
all(target_vendor = "fortanix", target_env = "sgx")))] {
|
||||
// On CloudABI and wasm right now the module below doesn't compile
|
||||
// (missing things in `libc` which is empty) so just omit everything
|
||||
// with an empty module
|
||||
|
|
@ -76,7 +78,9 @@ cfg_if! {
|
|||
// On windows we'll just be documenting what's already available
|
||||
#[allow(missing_docs)]
|
||||
pub use self::ext as windows_ext;
|
||||
} else if #[cfg(any(target_os = "cloudabi", target_arch = "wasm32", target_env = "sgx"))] {
|
||||
} else if #[cfg(any(target_os = "cloudabi",
|
||||
target_arch = "wasm32",
|
||||
all(target_vendor = "fortanix", target_env = "sgx")))] {
|
||||
// On CloudABI and wasm right now the shim below doesn't compile, so
|
||||
// just omit it
|
||||
#[unstable(issue = "0", feature = "std_internals")]
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ cfg_if! {
|
|||
target_os = "l4re",
|
||||
target_os = "redox",
|
||||
all(target_arch = "wasm32", not(target_os = "emscripten")),
|
||||
target_env = "sgx"))] {
|
||||
all(target_vendor = "fortanix", target_env = "sgx")))] {
|
||||
pub use sys::net;
|
||||
} else {
|
||||
pub mod net;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue