Skip to content

Commit

Permalink
Merge pull request #488 from wtetzner/master
Browse files Browse the repository at this point in the history
#487 Add thumbv4t-none-eabi to the list of targets that don't support…
  • Loading branch information
KodrAus authored Mar 2, 2022
2 parents 863c461 + cb20e45 commit d672066
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,10 @@ fn target_has_atomic_cas(target: &str) -> bool {

fn target_has_atomics(target: &str) -> bool {
match &target[..] {
"msp430-none-elf" | "riscv32i-unknown-none-elf" | "riscv32imc-unknown-none-elf" => false,
"thumbv4t-none-eabi"
| "msp430-none-elf"
| "riscv32i-unknown-none-elf"
| "riscv32imc-unknown-none-elf" => false,
_ => true,
}
}
Expand Down

0 comments on commit d672066

Please sign in to comment.