File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -170,7 +170,7 @@ impl ToolWrapper for ArWrapper {
170
170
let extension = extension. to_str ( ) . unwrap ( ) ;
171
171
let extension_lowercase = extension. to_lowercase ( ) ;
172
172
match & extension_lowercase[ ..] {
173
- "o" | "lo" | "a" | "la" | "so" | "ao" | "c.o" => {
173
+ "o" | "lo" | "a" | "la" | "so" | "ao" | "c.o" | "pch" => {
174
174
configuration. replace_extension ( & arg_as_path)
175
175
}
176
176
_ => arg_as_path,
Original file line number Diff line number Diff line change @@ -345,7 +345,7 @@ impl ToolWrapper for ClangWrapper {
345
345
let extension = extension. to_str ( ) . unwrap ( ) ;
346
346
let extension_lowercase = extension. to_lowercase ( ) ;
347
347
match & extension_lowercase[ ..] {
348
- "a" | "la" => configuration. replace_extension ( & arg_as_path) ,
348
+ "a" | "la" | "pch" => configuration. replace_extension ( & arg_as_path) ,
349
349
_ => arg_as_path,
350
350
}
351
351
} else {
You can’t perform that action at this time.
0 commit comments