forked from M-Labs/artiq-zynq
34 lines
1.0 KiB
Rust
34 lines
1.0 KiB
Rust
|
#![no_std]
|
||
|
#![feature(link_cfg)]
|
||
|
#![feature(nll)]
|
||
|
#![feature(unwind_attributes)]
|
||
|
#![feature(static_nobundle)]
|
||
|
#![cfg_attr(not(target_env = "msvc"), feature(libc))]
|
||
|
|
||
|
cfg_if::cfg_if! {
|
||
|
if #[cfg(target_env = "msvc")] {
|
||
|
// no extra unwinder support needed
|
||
|
} else if #[cfg(all(target_arch = "wasm32", not(target_os = "emscripten")))] {
|
||
|
// no unwinder on the system!
|
||
|
} else {
|
||
|
mod libunwind;
|
||
|
pub use libunwind::*;
|
||
|
mod backtrace;
|
||
|
pub use backtrace::backtrace;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#[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 "C" {}
|
||
|
|
||
|
#[cfg(target_os = "redox")]
|
||
|
#[link(name = "gcc_eh", kind = "static-nobundle", cfg(target_feature = "crt-static"))]
|
||
|
#[link(name = "gcc_s", cfg(not(target_feature = "crt-static")))]
|
||
|
extern "C" {}
|
||
|
|
||
|
#[cfg(all(target_vendor = "fortanix", target_env = "sgx"))]
|
||
|
#[link(name = "unwind", kind = "static-nobundle")]
|
||
|
extern "C" {}
|