Skip to content

Commit 3b035a4

Browse files
committed
Unconditionally set no-f16-f128 for compiler_builtins
With the v2 resolver, this has the intended behavior of building compiler_builtins. Unfortunately, this exposes the fact that the current stage0 compiler cannot build the `f16` and `f128` implementation of compiler_builtins. Unconditionally disable `f16` and `f128` for now so we can update the resolver.
1 parent 43a47fb commit 3b035a4

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

library/alloc/Cargo.toml

+1-4
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,7 @@ edition = "2021"
1010

1111
[dependencies]
1212
core = { path = "../core" }
13-
compiler_builtins = { version = "0.1.114", features = ['rustc-dep-of-std'] }
14-
15-
[target.'cfg(not(any(target_arch = "aarch64", target_arch = "x86", target_arch = "x86_64")))'.dependencies]
16-
compiler_builtins = { version = "0.1.114", features = ["no-f16-f128"] }
13+
compiler_builtins = { version = "0.1.114", features = ["rustc-dep-of-std", "no-f16-f128"] }
1714

1815
[dev-dependencies]
1916
rand = { version = "0.8.5", default-features = false, features = ["alloc"] }

0 commit comments

Comments
 (0)