mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-03 02:40:40 +00:00

Migrate the standard library from using the external `cfg_if` crate to using the now-built-in `cfg_select` macro. This does not yet eliminate the dependency from `library/std/Cargo.toml`, because while the standard library itself no longer uses `cfg_if`, it also incorporates the `backtrace` crate, which does. Migration assisted by the following vim command (after selecting the full `cfg_if!` invocation): ``` '<,'>s/\(cfg_if::\)\?cfg_if/cfg_select/ | '<,'>s/^\( *\)} else {/\1}\r\1_ => {/c | '<,'>s/^\( *\)} else if #\[cfg(\(.*\))\] /\1}\r\1\2 => /e | '<,'>s/if #\[cfg(\(.*\))\] {/\1 => {/e ``` This is imperfect, but substantially accelerated the process. This prompts for confirmation on the `} else {` since that can also appear inside one of the arms. This also requires manual intervention to handle any multi-line conditions.
200 lines
6.2 KiB
Rust
200 lines
6.2 KiB
Rust
#![no_std]
|
|
#![unstable(feature = "panic_unwind", issue = "32837")]
|
|
#![feature(cfg_emscripten_wasm_eh)]
|
|
#![feature(cfg_select)]
|
|
#![feature(link_cfg)]
|
|
#![feature(staged_api)]
|
|
#![cfg_attr(not(target_env = "msvc"), feature(libc))]
|
|
#![cfg_attr(
|
|
all(target_family = "wasm", any(not(target_os = "emscripten"), emscripten_wasm_eh)),
|
|
feature(simd_wasm64, wasm_exception_handling_intrinsics)
|
|
)]
|
|
#![allow(internal_features)]
|
|
#![deny(unsafe_op_in_unsafe_fn)]
|
|
|
|
// Force libc to be included even if unused. This is required by many platforms.
|
|
#[cfg(not(all(windows, target_env = "msvc")))]
|
|
extern crate libc as _;
|
|
|
|
cfg_select! {
|
|
target_env = "msvc" => {
|
|
// Windows MSVC no extra unwinder support needed
|
|
}
|
|
any(
|
|
target_os = "l4re",
|
|
target_os = "none",
|
|
target_os = "espidf",
|
|
target_os = "nuttx",
|
|
) => {
|
|
// These "unix" family members do not have unwinder.
|
|
}
|
|
any(
|
|
unix,
|
|
windows,
|
|
target_os = "psp",
|
|
target_os = "solid_asp3",
|
|
all(target_vendor = "fortanix", target_env = "sgx"),
|
|
) => {
|
|
mod libunwind;
|
|
pub use libunwind::*;
|
|
}
|
|
target_os = "xous" => {
|
|
mod unwinding;
|
|
pub use unwinding::*;
|
|
}
|
|
target_family = "wasm" => {
|
|
mod wasm;
|
|
pub use wasm::*;
|
|
}
|
|
_ => {
|
|
// no unwinder on the system!
|
|
// - os=none ("bare metal" targets)
|
|
// - os=hermit
|
|
// - os=uefi
|
|
// - os=cuda
|
|
// - nvptx64-nvidia-cuda
|
|
// - Any new targets not listed above.
|
|
}
|
|
}
|
|
|
|
#[cfg(target_env = "musl")]
|
|
cfg_select! {
|
|
all(feature = "llvm-libunwind", feature = "system-llvm-libunwind") => {
|
|
compile_error!("`llvm-libunwind` and `system-llvm-libunwind` cannot be enabled at the same time");
|
|
}
|
|
feature = "llvm-libunwind" => {
|
|
#[link(name = "unwind", kind = "static", modifiers = "-bundle")]
|
|
unsafe extern "C" {}
|
|
}
|
|
feature = "system-llvm-libunwind" => {
|
|
#[link(name = "unwind", kind = "static", modifiers = "-bundle", cfg(target_feature = "crt-static"))]
|
|
#[link(name = "unwind", cfg(not(target_feature = "crt-static")))]
|
|
unsafe extern "C" {}
|
|
}
|
|
_ => {
|
|
#[link(name = "unwind", kind = "static", modifiers = "-bundle", cfg(target_feature = "crt-static"))]
|
|
#[link(name = "gcc_s", cfg(not(target_feature = "crt-static")))]
|
|
unsafe extern "C" {}
|
|
}
|
|
}
|
|
|
|
// This is the same as musl except that we default to using the system libunwind
|
|
// instead of libgcc.
|
|
#[cfg(target_env = "ohos")]
|
|
cfg_select! {
|
|
all(feature = "llvm-libunwind", feature = "system-llvm-libunwind") => {
|
|
compile_error!("`llvm-libunwind` and `system-llvm-libunwind` cannot be enabled at the same time");
|
|
}
|
|
feature = "llvm-libunwind" => {
|
|
#[link(name = "unwind", kind = "static", modifiers = "-bundle")]
|
|
unsafe extern "C" {}
|
|
}
|
|
_ => {
|
|
#[link(name = "unwind", kind = "static", modifiers = "-bundle", cfg(target_feature = "crt-static"))]
|
|
#[link(name = "unwind", cfg(not(target_feature = "crt-static")))]
|
|
unsafe extern "C" {}
|
|
}
|
|
}
|
|
|
|
#[cfg(target_os = "android")]
|
|
cfg_select! {
|
|
feature = "llvm-libunwind" => {
|
|
compile_error!("`llvm-libunwind` is not supported for Android targets");
|
|
}
|
|
_ => {
|
|
#[link(name = "unwind", kind = "static", modifiers = "-bundle", cfg(target_feature = "crt-static"))]
|
|
#[link(name = "unwind", cfg(not(target_feature = "crt-static")))]
|
|
unsafe extern "C" {}
|
|
}
|
|
}
|
|
// Android's unwinding library depends on dl_iterate_phdr in `libdl`.
|
|
#[cfg(target_os = "android")]
|
|
#[link(name = "dl", kind = "static", modifiers = "-bundle", cfg(target_feature = "crt-static"))]
|
|
#[link(name = "dl", cfg(not(target_feature = "crt-static")))]
|
|
unsafe extern "C" {}
|
|
|
|
// When building with crt-static, we get `gcc_eh` from the `libc` crate, since
|
|
// glibc needs it, and needs it listed later on the linker command line. We
|
|
// don't want to duplicate it here.
|
|
#[cfg(all(
|
|
target_os = "linux",
|
|
any(target_env = "gnu", target_env = "uclibc"),
|
|
not(feature = "llvm-libunwind"),
|
|
not(feature = "system-llvm-libunwind")
|
|
))]
|
|
#[link(name = "gcc_s", cfg(not(target_feature = "crt-static")))]
|
|
unsafe extern "C" {}
|
|
|
|
#[cfg(all(
|
|
target_os = "linux",
|
|
any(target_env = "gnu", target_env = "uclibc"),
|
|
not(feature = "llvm-libunwind"),
|
|
feature = "system-llvm-libunwind"
|
|
))]
|
|
#[link(name = "unwind", cfg(not(target_feature = "crt-static")))]
|
|
unsafe extern "C" {}
|
|
|
|
#[cfg(target_os = "redox")]
|
|
#[link(name = "gcc_eh", kind = "static", modifiers = "-bundle", cfg(target_feature = "crt-static"))]
|
|
#[link(name = "gcc_s", cfg(not(target_feature = "crt-static")))]
|
|
unsafe extern "C" {}
|
|
|
|
#[cfg(all(target_vendor = "fortanix", target_env = "sgx"))]
|
|
#[link(name = "unwind", kind = "static", modifiers = "-bundle")]
|
|
unsafe extern "C" {}
|
|
|
|
#[cfg(target_os = "netbsd")]
|
|
#[link(name = "gcc_s")]
|
|
unsafe extern "C" {}
|
|
|
|
#[cfg(target_os = "freebsd")]
|
|
#[link(name = "gcc", kind = "static", modifiers = "-bundle", cfg(target_feature = "crt-static"))]
|
|
#[link(name = "gcc_eh", kind = "static", modifiers = "-bundle", cfg(target_feature = "crt-static"))]
|
|
#[link(name = "gcc_s", cfg(not(target_feature = "crt-static")))]
|
|
unsafe extern "C" {}
|
|
|
|
#[cfg(all(target_os = "openbsd", target_arch = "sparc64"))]
|
|
#[link(name = "gcc")]
|
|
unsafe extern "C" {}
|
|
|
|
#[cfg(all(target_os = "openbsd", not(target_arch = "sparc64")))]
|
|
#[link(name = "c++abi")]
|
|
unsafe extern "C" {}
|
|
|
|
#[cfg(any(target_os = "solaris", target_os = "illumos"))]
|
|
#[link(name = "gcc_s")]
|
|
unsafe extern "C" {}
|
|
|
|
#[cfg(target_os = "dragonfly")]
|
|
#[link(name = "gcc_pic")]
|
|
unsafe extern "C" {}
|
|
|
|
#[cfg(target_os = "haiku")]
|
|
#[link(name = "gcc_s")]
|
|
unsafe extern "C" {}
|
|
|
|
#[cfg(target_os = "aix")]
|
|
#[link(name = "unwind")]
|
|
unsafe extern "C" {}
|
|
|
|
#[cfg(target_os = "nto")]
|
|
cfg_select! {
|
|
target_env = "nto70" => {
|
|
#[link(name = "gcc")]
|
|
unsafe extern "C" {}
|
|
}
|
|
_ => {
|
|
#[link(name = "gcc_s")]
|
|
unsafe extern "C" {}
|
|
}
|
|
}
|
|
|
|
#[cfg(target_os = "hurd")]
|
|
#[link(name = "gcc_s")]
|
|
unsafe extern "C" {}
|
|
|
|
#[cfg(all(target_os = "windows", target_env = "gnu", target_abi = "llvm"))]
|
|
#[link(name = "unwind", kind = "static", modifiers = "-bundle", cfg(target_feature = "crt-static"))]
|
|
#[link(name = "unwind", cfg(not(target_feature = "crt-static")))]
|
|
unsafe extern "C" {}
|