Skip to content

Commit 8b0f632

Browse files
authored
Rollup merge of #135501 - tgross35:stdlib-dependencies-private, r=bjorn3
Inject `compiler_builtins` during postprocessing and ensure it is made private Follow up of #135278 Do the following: * Inject `compiler_builtins` during postprocessing, rather than injecting `extern crate compiler_builtins as _` into the AST * Do not make dependencies of `std` private by default (this was added in #135278) * Make sure sysroot crates correctly mark their dependencies private/public * Ensure that marking a dependency private makes its dependents private by default as well, unless otherwise specified * Do the `compiler_builtins` update that has been blocked on this There is more detail in the commit messages. This includes the changes I was working on in #136226. try-job: test-various try-job: x86_64-msvc-1 try-job: x86_64-msvc-2 try-job: i686-mingw-1 try-job: i686-mingw-2
2 parents 410a68a + 8622c81 commit 8b0f632

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

patches/0029-stdlib-Disable-f16-and-f128-in-compiler-builtins.patch

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ index 7165c3e48af..968552ad435 100644
1515
edition = "2021"
1616

1717
[dependencies]
18-
core = { path = "../core" }
18+
core = { path = "../core", public = true }
1919
-compiler_builtins = { version = "=0.1.146", features = ['rustc-dep-of-std'] }
2020
+compiler_builtins = { version = "=0.1.146", features = ['rustc-dep-of-std', 'no-f16-f128'] }
2121

0 commit comments

Comments
 (0)