#![no_std]
#![unstable(feature = "panic_unwind", issue = "32837")]
#![deny(warnings)]
#![feature(link_cfg)]
#![feature(staged_api)]
#![feature(unwind_attributes)]
#![feature(static_nobundle)]
#![cfg_attr(not(target_env = "msvc"), feature(libc))]
#[macro_use]
mod macros;
cfg_if! {
if #[cfg(target_env = "msvc")] {
} else if #[cfg(all(target_arch = "wasm32", not(target_os = "emscripten")))] {
} else {
extern crate sgx_trts;
mod libunwind;
pub use libunwind::*;
}
}
#[cfg(target_env = "musl")]
#[link(name = "unwind", kind = "static", cfg(target_feature = "crt-static"))]
#[link(name = "gcc_s", cfg(not(target_feature = "crt-static")))]
extern {}