Skip to content

Commit

Permalink
Rollup merge of #107968 - ian-h-chamberlain:feature/3ds-enable-thread…
Browse files Browse the repository at this point in the history
…-local, r=Nilstrieb

Enable `#[thread_local]` on armv6k-nintendo-3ds

Since [libctru 2.1.2](https://github.com/devkitPro/libctru/releases/tag/v2.1.2)  was released we should now be able to use real `#[thread_local]` without corruption issues on the 3DS target.

CC `@Meziu` `@AzureMarker` `@Techie-Pi`
rust3ds/ctru-rs#91 (comment)
  • Loading branch information
Dylan-DPC authored Feb 15, 2023
2 parents c78e3c7 + e723e43 commit 587e3df
Showing 1 changed file with 1 addition and 2 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
Expand Up @@ -29,8 +29,7 @@ pub fn target() -> Target {
pre_link_args,
exe_suffix: ".elf".into(),
no_default_libraries: false,
// There are some issues in debug builds with this enabled in certain programs.
has_thread_local: false,
has_thread_local: true,
..Default::default()
},
}
Expand Down

0 comments on commit 587e3df

Please sign in to comment.