Skip to content

Commit b0346d5

Browse files
committed
Pass +forced-atomics feature for riscv32{i,im,imc}-unknown-none-elf
1 parent 484cb4e commit b0346d5

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

compiler/rustc_target/src/spec/riscv32i_unknown_none_elf.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,9 @@ pub fn target() -> Target {
1111
linker_flavor: LinkerFlavor::Gnu(Cc::No, Lld::Yes),
1212
linker: Some("rust-lld".into()),
1313
cpu: "generic-rv32".into(),
14-
max_atomic_width: Some(0),
14+
max_atomic_width: Some(32),
1515
atomic_cas: false,
16+
features: "+forced-atomics".into(),
1617
panic_strategy: PanicStrategy::Abort,
1718
relocation_model: RelocModel::Static,
1819
emit_debug_gdb_scripts: false,

compiler/rustc_target/src/spec/riscv32im_unknown_none_elf.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ pub fn target() -> Target {
1111
linker_flavor: LinkerFlavor::Gnu(Cc::No, Lld::Yes),
1212
linker: Some("rust-lld".into()),
1313
cpu: "generic-rv32".into(),
14-
max_atomic_width: Some(0),
14+
max_atomic_width: Some(32),
1515
atomic_cas: false,
16-
features: "+m".into(),
16+
features: "+m,+forced-atomics".into(),
1717
panic_strategy: PanicStrategy::Abort,
1818
relocation_model: RelocModel::Static,
1919
emit_debug_gdb_scripts: false,

compiler/rustc_target/src/spec/riscv32imc_unknown_none_elf.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ pub fn target() -> Target {
1111
linker_flavor: LinkerFlavor::Gnu(Cc::No, Lld::Yes),
1212
linker: Some("rust-lld".into()),
1313
cpu: "generic-rv32".into(),
14-
max_atomic_width: Some(0),
14+
max_atomic_width: Some(32),
1515
atomic_cas: false,
16-
features: "+m,+c".into(),
16+
features: "+m,+c,+forced-atomics".into(),
1717
panic_strategy: PanicStrategy::Abort,
1818
relocation_model: RelocModel::Static,
1919
emit_debug_gdb_scripts: false,

0 commit comments

Comments
 (0)