about summary refs log tree commit diff
path: root/compiler/rustc_target/src/spec/base/hurd.rs
blob: dcb346ddecca48e9c228ec3c064fc15032e93656 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use crate::spec::{RelroLevel, TargetOptions, cvs};

pub(crate) 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()
    }
}