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

pub fn opts() -> TargetOptions {
    TargetOptions {
        os: "linux".into(),
        dynamic_linking: true,
        executables: 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()
    }
}