Open
Description
We have build tooling that generates rust command-line arguments inside response files, passed like rustc @args.rsp
.
In some cases, the tool emits response files with empty lines, or lines that contain only a single space.
Case (second line is a single space):
foo.rs
diagnostic:
error: multiple input filenames provided (first two filenames are `foo.rs` and ` `)
Case (second line is blank):
foo.rs
diagnostic:
error: multiple input filenames provided (first two filenames are `foo.rs` and ``)
Could the rustc
compiler be updated to ignore space-only and blank lines in response files?