blob: 9e7eda037732b0a75c70da4d32ec1d2b44828aa9 [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()
}
}