]> git.proxmox.com Git - rustc.git/blame - compiler/rustc_target/src/spec/solid_base.rs
New upstream version 1.64.0+dfsg1
[rustc.git] / compiler / rustc_target / src / spec / solid_base.rs
CommitLineData
c295e0f8
XL
1use super::FramePointer;
2use crate::spec::TargetOptions;
3
4pub fn opts(kernel: &str) -> TargetOptions {
5 TargetOptions {
5e7ed085
FG
6 os: format!("solid_{}", kernel).into(),
7 vendor: "kmc".into(),
064997fb 8 executables: false,
c295e0f8 9 frame_pointer: FramePointer::NonLeaf,
a2a8927a 10 has_thread_local: true,
c295e0f8
XL
11 ..Default::default()
12 }
13}