Skip to content

Commit

Permalink
Rollup merge of rust-lang#90494 - Meziu:armv6k-3ds-target, r=sanxiyn
Browse files Browse the repository at this point in the history
ARMv6K Horizon OS panic change

After a small change to `backtrace-rs` ([rust-lang#448](rust-lang/backtrace-rs#448)), `PanicStrategy::Unwind` is now fully supported.
  • Loading branch information
matthiaskrgr authored Nov 8, 2021
2 parents e4ce370 + d379147 commit 8cbe7a8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions compiler/rustc_target/src/spec/armv6k_nintendo_3ds.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use crate::spec::{LinkArgs, LinkerFlavor, PanicStrategy, RelocModel, Target, TargetOptions};
use crate::spec::{LinkArgs, LinkerFlavor, RelocModel, Target, TargetOptions};

/// A base target for Nintendo 3DS devices using the devkitARM toolchain.
///
Expand Down Expand Up @@ -36,7 +36,6 @@ pub fn target() -> Target {
features: "+vfp2".to_string(),
pre_link_args,
exe_suffix: ".elf".to_string(),
panic_strategy: PanicStrategy::Abort,
..Default::default()
},
}
Expand Down
2 changes: 1 addition & 1 deletion library/backtrace

0 comments on commit 8cbe7a8

Please sign in to comment.