Skip to content

Add Nintendo Switch as tier 3 target #88991

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Jul 15, 2022
Prev Previous commit
Next Next commit
Remove unneeded options from Nintendo Switch target
  • Loading branch information
jam1garner authored and leo60228 committed Jul 14, 2022
commit 7f8804915ef3b0749f03b0f49311674270612a64
36 changes: 13 additions & 23 deletions compiler/rustc_target/src/spec/aarch64_nintendo_switch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,33 +4,23 @@ const LINKER_SCRIPT: &str = include_str!("./aarch64_nintendo_switch_linker_scrip

/// A base target for Nintendo Switch devices using a pure LLVM toolchain.
pub fn target() -> Target {
let mut opts = TargetOptions {
linker_flavor: LinkerFlavor::Lld(LldFlavor::Ld),
linker: Some("rust-lld".into()),
link_script: Some(LINKER_SCRIPT.into()),
os: "horizon".into(),
max_atomic_width: Some(128),
panic_strategy: PanicStrategy::Abort,
position_independent_executables: true,
crt_static_default: false,
crt_static_respected: false,
dynamic_linking: true,
executables: true,
has_elf_tls: false,
has_rpath: false,
relro_level: RelroLevel::Off,
..Default::default()
};

opts.pre_link_args.insert(LinkerFlavor::Lld(LldFlavor::Ld), vec![]);

opts.post_link_args.insert(LinkerFlavor::Lld(LldFlavor::Ld), vec![]);

Target {
llvm_target: "aarch64-unknown-none".into(),
pointer_width: 64,
data_layout: "e-m:e-i8:8:32-i16:16:32-i64:64-i128:128-n32:64-S128".into(),
arch: "aarch64".into(),
options: opts,
options: TargetOptions {
linker_flavor: LinkerFlavor::Lld(LldFlavor::Ld),
linker: Some("rust-lld".into()),
link_script: Some(LINKER_SCRIPT.into()),
os: "horizon".into(),
max_atomic_width: Some(128),
panic_strategy: PanicStrategy::Abort,
position_independent_executables: true,
dynamic_linking: true,
executables: true,
relro_level: RelroLevel::Off,
..Default::default()
},
}
}