about summary refs log tree commit diff
path: root/compiler/rustc_llvm/build.rs
diff options
context:
space:
mode:
authorchloefeal <188809157+chloefeal@users.noreply.github.com>2024-12-27 21:35:57 +0800
committerchloefeal <188809157+chloefeal@users.noreply.github.com>2024-12-27 21:35:57 +0800
commite1b65be4177486979bab4a05f520e0c013b831b4 (patch)
tree247bf2b79069671fe514cd17342943610463f642 /compiler/rustc_llvm/build.rs
parent42591a4cc0ccfc487b5f0813a77c79137fd10eb5 (diff)
downloadrust-e1b65be4177486979bab4a05f520e0c013b831b4.tar.gz
rust-e1b65be4177486979bab4a05f520e0c013b831b4.zip
Fix typos
Signed-off-by: chloefeal <188809157+chloefeal@users.noreply.github.com>
Diffstat (limited to 'compiler/rustc_llvm/build.rs')
-rw-r--r--compiler/rustc_llvm/build.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_llvm/build.rs b/compiler/rustc_llvm/build.rs
index f092110a324..d9d28299413 100644
--- a/compiler/rustc_llvm/build.rs
+++ b/compiler/rustc_llvm/build.rs
@@ -220,7 +220,7 @@ fn main() {
     let mut cmd = Command::new(&llvm_config);
     cmd.arg(llvm_link_arg).arg("--libs");
 
-    // Don't link system libs if cross-compiling unless targetting Windows.
+    // Don't link system libs if cross-compiling unless targeting Windows.
     // On Windows system DLLs aren't linked directly, instead import libraries are used.
     // These import libraries are independent of the host.
     if !is_crossed || target.contains("windows") {