Skip to content

Commit 1a7b9de

Browse files
committed
Patch builtins with a version enabling f16 on s390x
1 parent 6a524bd commit 1a7b9de

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

library/Cargo.lock

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,8 @@ dependencies = [
6161

6262
[[package]]
6363
name = "compiler_builtins"
64-
version = "0.1.148"
65-
source = "registry+https://github.com/rust-lang/crates.io-index"
66-
checksum = "26137996631d90d2727b905b480fdcf8c4479fdbce7afd7f8e3796d689b33cc2"
64+
version = "0.1.999"
65+
source = "git+https://github.com/tgross35/compiler-builtins.git?branch=s390x-f16#8717dbc2ca1bde33a02a5ce046c0a11deec154fd"
6766
dependencies = [
6867
"cc",
6968
"rustc-std-workspace-core",

library/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,3 +46,4 @@ rustc-demangle.debug = 0
4646
rustc-std-workspace-core = { path = 'rustc-std-workspace-core' }
4747
rustc-std-workspace-alloc = { path = 'rustc-std-workspace-alloc' }
4848
rustc-std-workspace-std = { path = 'rustc-std-workspace-std' }
49+
compiler_builtins = { git = "https://github.com/tgross35/compiler-builtins.git", branch = "s390x-f16" }

library/alloc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ edition = "2021"
1212

1313
[dependencies]
1414
core = { path = "../core", public = true }
15-
compiler_builtins = { version = "=0.1.148", features = ['rustc-dep-of-std'] }
15+
compiler_builtins = { version = "0.1.148", features = ['rustc-dep-of-std'] }
1616

1717
[dev-dependencies]
1818
rand = { version = "0.9.0", default-features = false, features = ["alloc"] }

library/std/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ cfg-if = { version = "1.0", features = ['rustc-dep-of-std'] }
1818
panic_unwind = { path = "../panic_unwind", optional = true }
1919
panic_abort = { path = "../panic_abort" }
2020
core = { path = "../core", public = true }
21-
compiler_builtins = { version = "=0.1.148" }
21+
compiler_builtins = { version = "0.1.148" }
2222
unwind = { path = "../unwind" }
2323
hashbrown = { version = "0.15", default-features = false, features = [
2424
'rustc-dep-of-std',

0 commit comments

Comments
 (0)