blob: 0dfbb13b7731795f72acaa729e32fce1cd48b352 [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,
.. Default::default()
}
}