27 lines
1.0 KiB
Diff
27 lines
1.0 KiB
Diff
From ff23f6113098987318b674088b924e22750be18c Mon Sep 17 00:00:00 2001
|
|
From: bjorn3 <17426603+bjorn3@users.noreply.github.com>
|
|
Date: Fri, 17 Feb 2023 18:37:48 +0100
|
|
Subject: [PATCH] Downgrade compiler-builtins to 0.1.86
|
|
|
|
0.1.87 doesn't work on Windows when using cg_clif
|
|
---
|
|
library/std/Cargo.toml | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/library/std/Cargo.toml b/library/std/Cargo.toml
|
|
index 349cd91..300f812 100644
|
|
--- a/library/std/Cargo.toml
|
|
+++ b/library/std/Cargo.toml
|
|
@@ -16,7 +16,7 @@ panic_unwind = { path = "../panic_unwind", optional = true }
|
|
panic_abort = { path = "../panic_abort" }
|
|
core = { path = "../core" }
|
|
libc = { version = "0.2.138", default-features = false, features = ['rustc-dep-of-std'] }
|
|
-compiler_builtins = { version = "0.1.87" }
|
|
+compiler_builtins = { version = "0.1.86" }
|
|
profiler_builtins = { path = "../profiler_builtins", optional = true }
|
|
unwind = { path = "../unwind" }
|
|
hashbrown = { version = "0.12", default-features = false, features = ['rustc-dep-of-std'] }
|
|
--
|
|
2.26.2.7.g19db9cfb68
|
|
|