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

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