diff options
| author | bors <bors@rust-lang.org> | 2025-06-09 18:22:02 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2025-06-09 18:22:02 +0000 |
| commit | d13a431a6cc69cd65efe7c3eb7808251d6fd7a46 (patch) | |
| tree | 024f8492685c7eb3261645ed312a270a2c5babf9 /compiler/rustc_codegen_gcc | |
| parent | 00b526212bbdd68872d6f964fcc9a14a66c36fd8 (diff) | |
| parent | fd06f6d6582bccb4198e13d701ad039258cd8a62 (diff) | |
| download | rust-d13a431a6cc69cd65efe7c3eb7808251d6fd7a46.tar.gz rust-d13a431a6cc69cd65efe7c3eb7808251d6fd7a46.zip | |
Auto merge of #142253 - tgross35:rollup-img49op, r=tgross35
Rollup of 5 pull requests Successful merges: - rust-lang/rust#140767 (Stabilize `sha512`, `sm3` and `sm4` for x86) - rust-lang/rust#141001 (Make NonZero<char> possible) - rust-lang/rust#141993 (Use the in-tree `compiler-builtins` for the sysroot) - rust-lang/rust#142208 (Always consider `const _` items as live for dead code analysis) - rust-lang/rust#142238 (stabilize nonnull_provenance) r? `@ghost` `@rustbot` modify labels: rollup
Diffstat (limited to 'compiler/rustc_codegen_gcc')
| -rw-r--r-- | compiler/rustc_codegen_gcc/build_system/build_sysroot/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_gcc/build_system/build_sysroot/Cargo.toml b/compiler/rustc_codegen_gcc/build_system/build_sysroot/Cargo.toml index 24152070e64..931f6097abc 100644 --- a/compiler/rustc_codegen_gcc/build_system/build_sysroot/Cargo.toml +++ b/compiler/rustc_codegen_gcc/build_system/build_sysroot/Cargo.toml @@ -6,7 +6,6 @@ resolver = "2" [dependencies] core = { path = "./sysroot_src/library/core" } -compiler_builtins = "0.1" alloc = { path = "./sysroot_src/library/alloc" } std = { path = "./sysroot_src/library/std", features = ["panic_unwind", "backtrace"] } test = { path = "./sysroot_src/library/test" } @@ -16,6 +15,7 @@ proc_macro = { path = "./sysroot_src/library/proc_macro" } rustc-std-workspace-core = { path = "./sysroot_src/library/rustc-std-workspace-core" } rustc-std-workspace-alloc = { path = "./sysroot_src/library/rustc-std-workspace-alloc" } rustc-std-workspace-std = { path = "./sysroot_src/library/rustc-std-workspace-std" } +compiler_builtins = { path = "./sysroot_src/library/compiler-builtins/compiler-builtins" } # For compiler-builtins we always use a high number of codegen units. # The goal here is to place every single intrinsic into its own object |
