blob: 98a2a0fbc9cc1bcbed2d1f27c347bf73a1764b3d [file] [log] [blame]
use crate::spec::TargetOptions;
use std::default::Default;
pub fn opts() -> TargetOptions {
TargetOptions {
dynamic_linking: true,
executables: true,
has_rpath: true,
target_family: Some("unix".to_string()),
is_like_solaris: true,
limit_rdylib_exports: false, // Linker doesn't support this
..Default::default()
}
}