summaryrefslogtreecommitdiffstats
path: root/compiler/rustc_target/src/spec/base/hurd.rs
blob: 76f8223c0e4ed5ad906bb21f0f787e8f557d9fa4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use crate::spec::{cvs, RelroLevel, TargetOptions};

pub fn opts() -> TargetOptions {
    TargetOptions {
        os: "hurd".into(),
        dynamic_linking: true,
        families: cvs!["unix"],
        has_rpath: true,
        position_independent_executables: true,
        relro_level: RelroLevel::Full,
        has_thread_local: true,
        crt_static_respected: true,
        ..Default::default()
    }
}