We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18c604f commit a82de17Copy full SHA for a82de17
src/cargo/core/compiler/custom_build.rs
@@ -514,7 +514,7 @@ impl BuildOutput {
514
.split(|c: char| c.is_whitespace())
515
.filter(|w| w.chars().any(|c| !c.is_whitespace()));
516
let (mut library_paths, mut library_links) = (Vec::new(), Vec::new());
517
-
+
518
while let Some(flag) = flags_iter.next() {
519
if flag.starts_with("-l") || flag.starts_with("-L") {
520
// Check if this flag has no space before the value as is
@@ -528,7 +528,7 @@ impl BuildOutput {
528
"Flag in rustc-flags has no value in {}: {}",
529
whence,
530
value
531
- }
+ },
532
}
533
534
0 commit comments