summary refs log tree commit diff
path: root/compiler/rustc_codegen_ssa
diff options
context:
space:
mode:
authorVadim Petrochenkov <vadim.petrochenkov@gmail.com>2022-04-08 18:20:57 +0300
committerVadim Petrochenkov <vadim.petrochenkov@gmail.com>2022-06-09 23:12:58 +0400
commita8ee1f3a4f6ee7f788ad53e28e2945e0cb7a1cce (patch)
tree5cfc8da3609aaa072a25b4829b193b4a6f2fc876 /compiler/rustc_codegen_ssa
parentd7b8d77be5b4a091fe99c2f32b1334b931a2f4aa (diff)
downloadrust-a8ee1f3a4f6ee7f788ad53e28e2945e0cb7a1cce.tar.gz
rust-a8ee1f3a4f6ee7f788ad53e28e2945e0cb7a1cce.zip
Stabilize the `bundle` native library modifier
Diffstat (limited to 'compiler/rustc_codegen_ssa')
-rw-r--r--compiler/rustc_codegen_ssa/src/back/link.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_codegen_ssa/src/back/link.rs b/compiler/rustc_codegen_ssa/src/back/link.rs
index fc30679be03..1f5e2b76bf0 100644
--- a/compiler/rustc_codegen_ssa/src/back/link.rs
+++ b/compiler/rustc_codegen_ssa/src/back/link.rs
@@ -1952,7 +1952,7 @@ fn linker_with_args<'a, B: ArchiveBuilder<'a>>(
         add_local_native_libraries(cmd, sess, codegen_results);
     }
 
-    // Upstream rust libraries and their nobundle static libraries
+    // Upstream rust libraries and their non-bundled static libraries
     add_upstream_rust_crates::<B>(cmd, sess, codegen_results, crate_type, tmpdir);
 
     // Upstream dynamic native libraries linked with `#[link]` attributes at and `-l`
@@ -2237,7 +2237,7 @@ fn add_local_native_libraries(
     }
 }
 
-/// # Linking Rust crates and their nobundle static libraries
+/// # Linking Rust crates and their non-bundled static libraries
 ///
 /// Rust crates are not considered at all when creating an rlib output. All dependencies will be
 /// linked when producing the final output (instead of the intermediate rlib version).