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