mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-26 00:34:06 +00:00
riscv32imc_esp_espidf: set max_atomic_width to 64
This commit is contained in:
parent
c651ba8a54
commit
65614e91ad
@ -18,11 +18,11 @@ pub fn target() -> Target {
|
||||
cpu: "generic-rv32".to_string(),
|
||||
|
||||
// While the RiscV32IMC architecture does not natively support atomics, ESP-IDF does support
|
||||
// the __atomic* and __sync* GCC builtins, so setting `max_atomic_width` to `Some(32)`
|
||||
// the __atomic* and __sync* GCC builtins, so setting `max_atomic_width` to `Some(64)`
|
||||
// and `atomic_cas` to `true` will cause the compiler to emit libcalls to these builtins.
|
||||
//
|
||||
// Support for atomics is necessary for the Rust STD library, which is supported by the ESP-IDF framework.
|
||||
max_atomic_width: Some(32),
|
||||
max_atomic_width: Some(64),
|
||||
atomic_cas: true,
|
||||
|
||||
features: "+m,+c".to_string(),
|
||||
|
Loading…
Reference in New Issue
Block a user