about summary refs log tree commit diff
path: root/library/std_detect/src/detect/os/freebsd/mod.rs
blob: 7de9250e83584b388e9d0bbd6c99666d8e3190d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//! Run-time feature detection on FreeBSD

mod auxvec;

cfg_select! {
    target_arch = "aarch64" => {
        mod aarch64;
        pub(crate) use self::aarch64::detect_features;
    }
    target_arch = "arm" => {
        mod arm;
        pub(crate) use self::arm::detect_features;
    }
    target_arch = "powerpc64" => {
        mod powerpc;
        pub(crate) use self::powerpc::detect_features;
    }
    _ => {
        use crate::detect::cache;
        /// Performs run-time feature detection.
        pub(crate) fn detect_features() -> cache::Initializer {
            cache::Initializer::default()
        }
    }
}