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 dfebb0f commit f5731f7Copy full SHA for f5731f7
src/lib.rs
@@ -683,9 +683,13 @@ impl Library {
683
continue;
684
}
685
686
- if matches!(subopt, "-framework" | "-isystem" | "-iquote" | "idirafter") {
687
- pop = true;
688
- continue;
+ match subopt {
+ "-framework" | "-isystem" | "-iquote" | "idirafter" => {
+ pop = true;
689
+ continue;
690
+ }
691
+
692
+ _ => (),
693
694
695
ld_option.push(subopt);
0 commit comments