1
Fork 0

Fix typos

Signed-off-by: chloefeal <188809157+chloefeal@users.noreply.github.com>
This commit is contained in:
chloefeal 2024-12-27 21:35:57 +08:00
parent 42591a4cc0
commit e1b65be417
No known key found for this signature in database
GPG key ID: DB2DEF3B18BF5BCA
6 changed files with 6 additions and 6 deletions

View file

@ -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") {