]> git.lizzy.rs Git - rust.git/commitdiff
Rustup to rustc 1.51.0-nightly (d4e3570db 2021-02-01)
authorbjorn3 <bjorn3@users.noreply.github.com>
Tue, 2 Feb 2021 09:24:19 +0000 (10:24 +0100)
committerbjorn3 <bjorn3@users.noreply.github.com>
Tue, 2 Feb 2021 09:24:29 +0000 (10:24 +0100)
build_sysroot/Cargo.lock
rust-toolchain
src/archive.rs

index 0da9999c172853a1fd988d5f3cb16fcb6f2ca0fc..d29ab8c18033db616f50fd6e869c841bf34b6463 100644 (file)
@@ -139,9 +139,9 @@ dependencies = [
 
 [[package]]
 name = "libc"
-version = "0.2.84"
+version = "0.2.85"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "1cca32fa0182e8c0989459524dc356b8f2b5c10f1b9eb521b7d182c03cf8c5ff"
+checksum = "7ccac4b00700875e6a07c6cde370d44d32fa01c5a65cdd2fca6858c479d28bb3"
 dependencies = [
  "rustc-std-workspace-core",
 ]
index a08f00d19c20fa1348bc138d4e779060b23a6e50..de8e5f71cdc5b3085593fdae7ab590186b09e6f8 100644 (file)
@@ -1 +1 @@
-nightly-2021-01-30
+nightly-2021-02-02
index 96579054389abd0723ba74cb938177589fb50c78..d2ed553b700b3a45b5e87e7da9e07f9e366f366a 100644 (file)
@@ -30,7 +30,6 @@ pub(crate) struct ArArchiveBuilder<'a> {
     // Don't use `HashMap` here, as the order is important. `rust.metadata.bin` must always be at
     // the end of an archive for linkers to not get confused.
     entries: Vec<(String, ArchiveEntry)>,
-    update_symbols: bool,
 }
 
 impl<'a> ArchiveBuilder<'a> for ArArchiveBuilder<'a> {
@@ -69,7 +68,6 @@ fn new(sess: &'a Session, output: &Path, input: Option<&Path>) -> Self {
 
             src_archives,
             entries,
-            update_symbols: false,
         }
     }
 
@@ -136,9 +134,7 @@ fn add_rlib(
         })
     }
 
-    fn update_symbols(&mut self) {
-        self.update_symbols = true;
-    }
+    fn update_symbols(&mut self) {}
 
     fn build(mut self) {
         enum BuilderKind {