about summary refs log tree commit diff
path: root/src/test/rustdoc-ui/commandline-argfile-missing.rs
AgeCommit message (Collapse)AuthorLines
2021-02-19rustdoc: Support argument filesMiguel Ojeda-0/+15
Factors out the `rustc_driver` logic that handles argument files so that rustdoc supports them as well, e.g.: rustdoc @argfile This is needed to be able to generate docs for projects that already use argument files when compiling them, e.g. projects that pass a huge number of `--cfg` arguments. The feature was stabilized for `rustc` in #66172. Signed-off-by: Miguel Ojeda <ojeda@kernel.org>