about summary refs log tree commit diff
path: root/compiler/rustc_target/src/spec/base/dragonfly.rs
blob: 36c9489fb705f7fdcf1f073468d0a432230ccf1c (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: "dragonfly".into(),
        dynamic_linking: true,
        families: cvs!["unix"],
        has_rpath: true,
        position_independent_executables: true,
        relro_level: RelroLevel::Full,
        has_thread_local: true,
        default_dwarf_version: 2,
        ..Default::default()
    }
}