about summary refs log tree commit diff
path: root/compiler/rustc_driver/src/args.rs
AgeCommit message (Collapse)AuthorLines
2023-02-02Rename rustc_driver to rustc_driver_implJohn Kåre Alsaker-51/+0
2023-01-05Fix `uninlined_format_args` for some compiler cratesnils-3/+3
Convert all the crates that have had their diagnostic migration completed (except save_analysis because that will be deleted soon and apfloat because of the licensing problem).
2021-02-19rustdoc: Support argument filesMiguel Ojeda-1/+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>
2020-09-17use strip_prefix over starts_with and manual slicing based on pattern length ↵Matthias Krüger-2/+1
(clippy::manual_strip)
2020-08-30mv compiler to compiler/mark-0/+38