blob: e13a640d4d2103678364a21810f2745518759615 [file] [log] [blame]
use crate::spec::{RelroLevel, TargetOptions};
pub fn opts() -> TargetOptions {
TargetOptions {
os: "dragonfly".to_string(),
dynamic_linking: true,
executables: true,
families: vec!["unix".to_string()],
has_rpath: true,
position_independent_executables: true,
relro_level: RelroLevel::Full,
dwarf_version: Some(2),
..Default::default()
}
}