1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
use crate::spec::{RelroLevel, TargetOptions};
pub fn opts() -> TargetOptions {
TargetOptions {
os: "freebsd".to_string(),
dynamic_linking: true,
executables: true,
families: vec!["unix".to_string()],
has_rpath: true,
position_independent_executables: true,
relro_level: RelroLevel::Full,
abi_return_struct_as_int: true,
dwarf_version: Some(2),
..Default::default()
}
}