Rollup merge of #132522 - senekor:consistenst-codegen-help, r=compiler-errors
make codegen help output more consistent The output of `rustc -C help` generally has one option per line. There was one exception because of a (presumably) forgotten line continuation escape.
This commit is contained in:
commit
a7a0586618
1 changed files with 1 additions and 1 deletions
|
@ -1585,7 +1585,7 @@ options! {
|
||||||
link_dead_code: Option<bool> = (None, parse_opt_bool, [TRACKED],
|
link_dead_code: Option<bool> = (None, parse_opt_bool, [TRACKED],
|
||||||
"keep dead code at link time (useful for code coverage) (default: no)"),
|
"keep dead code at link time (useful for code coverage) (default: no)"),
|
||||||
link_self_contained: LinkSelfContained = (LinkSelfContained::default(), parse_link_self_contained, [UNTRACKED],
|
link_self_contained: LinkSelfContained = (LinkSelfContained::default(), parse_link_self_contained, [UNTRACKED],
|
||||||
"control whether to link Rust provided C objects/libraries or rely
|
"control whether to link Rust provided C objects/libraries or rely \
|
||||||
on a C toolchain or linker installed in the system"),
|
on a C toolchain or linker installed in the system"),
|
||||||
linker: Option<PathBuf> = (None, parse_opt_pathbuf, [UNTRACKED],
|
linker: Option<PathBuf> = (None, parse_opt_pathbuf, [UNTRACKED],
|
||||||
"system linker to link outputs with"),
|
"system linker to link outputs with"),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue