diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2024-11-03 12:08:53 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-03 12:08:53 +0100 |
| commit | a7a0586618ab7b14f3ffeb95b14e90670ae42e00 (patch) | |
| tree | e2c473a0f7d7176698f9aef1999d2b8f05819691 /compiler/rustc_session/src/options.rs | |
| parent | 9c7cdc23522b2db96a44887a4529598ba7d8463a (diff) | |
| parent | 8837fc75426831d3f895d460bf86d5634f4458ce (diff) | |
| download | rust-a7a0586618ab7b14f3ffeb95b14e90670ae42e00.tar.gz rust-a7a0586618ab7b14f3ffeb95b14e90670ae42e00.zip | |
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.
Diffstat (limited to 'compiler/rustc_session/src/options.rs')
| -rw-r--r-- | compiler/rustc_session/src/options.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_session/src/options.rs b/compiler/rustc_session/src/options.rs index 5a2a6ab0031..ca67e0a68a9 100644 --- a/compiler/rustc_session/src/options.rs +++ b/compiler/rustc_session/src/options.rs @@ -1585,7 +1585,7 @@ options! { link_dead_code: Option<bool> = (None, parse_opt_bool, [TRACKED], "keep dead code at link time (useful for code coverage) (default: no)"), 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"), linker: Option<PathBuf> = (None, parse_opt_pathbuf, [UNTRACKED], "system linker to link outputs with"), |
