blob: b7e8e8cf7f57772fbee59e3ad049094402b347ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
use crate::spec::{cvs, TargetOptions};
pub fn opts() -> TargetOptions {
TargetOptions {
os: "solaris".into(),
dynamic_linking: true,
has_rpath: true,
families: cvs!["unix"],
is_like_solaris: true,
linker_is_gnu: false,
limit_rdylib_exports: false, // Linker doesn't support this
eh_frame_header: false,
..Default::default()
}
}
|