Skip to content

Commit ad52886

Browse files
Correct PTHREAD_STACK_MIN for riscv64-linux-gnu
1 parent f2942c6 commit ad52886

File tree

1 file changed

+2
-1
lines changed
  • src/unix/linux_like/linux/gnu

1 file changed

+2
-1
lines changed

src/unix/linux_like/linux/gnu/mod.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -907,7 +907,8 @@ cfg_if! {
907907
target_arch = "arm",
908908
target_arch = "x86",
909909
target_arch = "x86_64",
910-
target_arch = "s390x"
910+
target_arch = "s390x",
911+
target_arch = "riscv64"
911912
))] {
912913
pub const PTHREAD_STACK_MIN: ::size_t = 16384;
913914
} else if #[cfg(any(

0 commit comments

Comments
 (0)