Update to compiler-builtins 0.1.87
This commit is contained in:
parent
29ad465127
commit
54648091dd
4
build_sysroot/Cargo.lock
generated
4
build_sysroot/Cargo.lock
generated
@ -50,9 +50,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "compiler_builtins"
|
name = "compiler_builtins"
|
||||||
version = "0.1.86"
|
version = "0.1.87"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "5dae98c88e576098d7ab13ebcb40cc43e5114b2beafe61a87cda9200649ff205"
|
checksum = "f867ce54c09855ccd135ad4a50c777182a0c7af5ff20a8f537617bd648b10d50"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"rustc-std-workspace-core",
|
"rustc-std-workspace-core",
|
||||||
]
|
]
|
||||||
|
@ -8,8 +8,7 @@ alloc = { path = "./sysroot_src/library/alloc" }
|
|||||||
std = { path = "./sysroot_src/library/std", features = ["panic_unwind", "backtrace"] }
|
std = { path = "./sysroot_src/library/std", features = ["panic_unwind", "backtrace"] }
|
||||||
test = { path = "./sysroot_src/library/test" }
|
test = { path = "./sysroot_src/library/test" }
|
||||||
|
|
||||||
# FIXME allow 0.1.87 and later once #1353 is fixed
|
compiler_builtins = { version = "0.1.87", default-features = false, features = ["no-asm"] }
|
||||||
compiler_builtins = { version = "=0.1.86", default-features = false, features = ["no-asm"] }
|
|
||||||
|
|
||||||
[patch.crates-io]
|
[patch.crates-io]
|
||||||
rustc-std-workspace-core = { path = "./sysroot_src/library/rustc-std-workspace-core" }
|
rustc-std-workspace-core = { path = "./sysroot_src/library/rustc-std-workspace-core" }
|
||||||
|
@ -1,26 +0,0 @@
|
|||||||
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
|
|
||||||
|
|
@ -188,7 +188,7 @@ fn init(&self, sess: &Session) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn target_features(&self, _sess: &Session, _allow_unstable: bool) -> Vec<rustc_span::Symbol> {
|
fn target_features(&self, _sess: &Session, _allow_unstable: bool) -> Vec<rustc_span::Symbol> {
|
||||||
vec![Symbol::intern("llvm14-builtins-abi")]
|
vec![]
|
||||||
}
|
}
|
||||||
|
|
||||||
fn print_version(&self) {
|
fn print_version(&self) {
|
||||||
|
Loading…
Reference in New Issue
Block a user