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

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