From 3ab78d248aafeb0502a5f71533eac1cd9abf8cbc Mon Sep 17 00:00:00 2001 From: Antoni Boucher Date: Thu, 2 May 2024 17:07:58 -0400 Subject: [PATCH] Fix segfault in tests due to a bug in libc 0.2.154 --- build_system/build_sysroot/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/build_system/build_sysroot/Cargo.toml b/build_system/build_sysroot/Cargo.toml index 05503128f2a..b671693944d 100644 --- a/build_system/build_sysroot/Cargo.toml +++ b/build_system/build_sysroot/Cargo.toml @@ -7,6 +7,7 @@ resolver = "2" [dependencies] core = { path = "./sysroot_src/library/core" } compiler_builtins = "0.1" +libc = "=0.2.153" alloc = { path = "./sysroot_src/library/alloc" } std = { path = "./sysroot_src/library/std", features = ["panic_unwind", "backtrace"] } test = { path = "./sysroot_src/library/test" }