mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-30 04:24:26 +00:00
27 lines
736 B
Rust
27 lines
736 B
Rust
//! Run-time feature detection on Linux
|
|
|
|
mod auxvec;
|
|
mod cpuinfo;
|
|
|
|
cfg_if! {
|
|
if #[cfg(target_arch = "aarch64")] {
|
|
mod aarch64;
|
|
pub use self::aarch64::check_for;
|
|
} else if #[cfg(target_arch = "arm")] {
|
|
mod arm;
|
|
pub use self::arm::check_for;
|
|
} else if #[cfg(any(target_arch = "mips", target_arch = "mips64"))] {
|
|
mod mips;
|
|
pub use self::mips::check_for;
|
|
} else if #[cfg(any(target_arch = "powerpc", target_arch = "powerpc64"))] {
|
|
mod powerpc;
|
|
pub use self::powerpc::check_for;
|
|
} else {
|
|
use arch::detect::Feature;
|
|
/// Performs run-time feature detection.
|
|
pub fn check_for(_x: Feature) -> bool {
|
|
false
|
|
}
|
|
}
|
|
}
|