]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_target/src/spec/solaris_base.rs
Auto merge of #94566 - yanganto:show-ignore-message, r=m-ou-se
[rust.git] / compiler / rustc_target / src / spec / solaris_base.rs
1 use crate::spec::TargetOptions;
2
3 pub fn opts() -> TargetOptions {
4     TargetOptions {
5         os: "solaris".to_string(),
6         dynamic_linking: true,
7         executables: true,
8         has_rpath: true,
9         families: vec!["unix".to_string()],
10         is_like_solaris: true,
11         linker_is_gnu: false,
12         limit_rdylib_exports: false, // Linker doesn't support this
13         eh_frame_header: false,
14
15         ..Default::default()
16     }
17 }