We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddf1b89 commit ea7dc8eCopy full SHA for ea7dc8e
src/backtrace/mod.rs
@@ -125,7 +125,7 @@ impl fmt::Debug for Frame {
125
}
126
127
128
-#[cfg(all(target_env = "sgx", target_vendor = "fortanix", not(miri)))]
+#[cfg(all(target_env = "sgx", target_vendor = "fortanix"))]
129
mod sgx_image_base {
130
131
#[cfg(not(feature = "std"))]
@@ -160,12 +160,7 @@ mod sgx_image_base {
160
pub(crate) use imp::get_image_base;
161
162
163
-#[cfg(all(
164
- target_env = "sgx",
165
- target_vendor = "fortanix",
166
- not(feature = "std"),
167
- not(miri)
168
-))]
+#[cfg(all(target_env = "sgx", target_vendor = "fortanix", not(feature = "std")))]
169
pub use sgx_image_base::imp::set_image_base;
170
171
cfg_if::cfg_if! {
0 commit comments