Skip to content

Commit

Permalink
Fix target_vendor for aarch64-nintendo-switch-freestanding
Browse files Browse the repository at this point in the history
Previously set to `target_vendor = "unknown"`, but Nintendo is clearly
the vendor of the Switch, and is also reflected in the target name
itself.
  • Loading branch information
madsmtm committed Oct 2, 2024
1 parent 612796c commit 746c322
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ pub(crate) fn target() -> Target {
linker: Some("rust-lld".into()),
link_script: Some(LINKER_SCRIPT.into()),
os: "horizon".into(),
vendor: "nintendo".into(),
max_atomic_width: Some(128),
stack_probes: StackProbeType::Inline,
panic_strategy: PanicStrategy::Abort,
Expand Down

0 comments on commit 746c322

Please sign in to comment.