Skip to content

Commit

Permalink
Upgrade toolchain to nightly-2024-11-13
Browse files Browse the repository at this point in the history
  • Loading branch information
qinheping committed Nov 13, 2024
1 parent f855a72 commit 487e963
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ impl CodegenBackend for LlbcCodegenBackend {
debug!(?crate_type, ?out_path, "link");
if *crate_type == CrateType::Rlib {
// Emit the `rlib` that contains just one file: `<crate>.rmeta`
link_binary(sess, &ArArchiveBuilderBuilder, &codegen_results, outputs)?
link_binary(sess, &ArArchiveBuilderBuilder, codegen_results, outputs)?
} else {
// Write the location of the kani metadata file in the requested compiler output file.
let base_filepath = outputs.path(OutputType::Object);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ impl CodegenBackend for GotocCodegenBackend {
let requested_crate_types = &codegen_results.crate_info.crate_types;
// Create the rlib if one was requested.
if requested_crate_types.iter().any(|crate_type| *crate_type == CrateType::Rlib) {
link_binary(sess, &ArArchiveBuilderBuilder, &codegen_results, outputs)?;
link_binary(sess, &ArArchiveBuilderBuilder, codegen_results, outputs)?;
}

// But override all the other outputs.
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
# SPDX-License-Identifier: Apache-2.0 OR MIT

[toolchain]
channel = "nightly-2024-11-12"
channel = "nightly-2024-11-13"
components = ["llvm-tools", "rustc-dev", "rust-src", "rustfmt"]

0 comments on commit 487e963

Please sign in to comment.