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

pub fn opts() -> TargetOptions {
    TargetOptions {
        os: "linux".to_string(),
        dynamic_linking: true,
        executables: true,
        os_family: Some("unix".to_string()),
        linker_is_gnu: true,
        has_rpath: true,
        position_independent_executables: true,
        relro_level: RelroLevel::Full,
        has_elf_tls: true,
        crt_static_respected: true,
        ..Default::default()
    }
}