mirror of
https://github.com/tokio-rs/tokio.git
synced 2025-10-01 12:20:39 +00:00
tokio: add riscv32 to non atomic64 architectures (#4185)
This commit is contained in:
parent
44e9013f64
commit
eb7a615c96
@ -422,7 +422,8 @@ macro_rules! cfg_has_atomic_u64 {
|
|||||||
#[cfg(not(any(
|
#[cfg(not(any(
|
||||||
target_arch = "arm",
|
target_arch = "arm",
|
||||||
target_arch = "mips",
|
target_arch = "mips",
|
||||||
target_arch = "powerpc"
|
target_arch = "powerpc",
|
||||||
|
target_arch = "riscv32"
|
||||||
)))]
|
)))]
|
||||||
$item
|
$item
|
||||||
)*
|
)*
|
||||||
@ -435,7 +436,8 @@ macro_rules! cfg_not_has_atomic_u64 {
|
|||||||
#[cfg(any(
|
#[cfg(any(
|
||||||
target_arch = "arm",
|
target_arch = "arm",
|
||||||
target_arch = "mips",
|
target_arch = "mips",
|
||||||
target_arch = "powerpc"
|
target_arch = "powerpc",
|
||||||
|
target_arch = "riscv32"
|
||||||
))]
|
))]
|
||||||
$item
|
$item
|
||||||
)*
|
)*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user