diff options
| author | Remo Senekowitsch <remo@buenzli.dev> | 2024-11-02 12:10:37 +0100 |
|---|---|---|
| committer | Remo Senekowitsch <remo@buenzli.dev> | 2024-11-02 12:35:48 +0100 |
| commit | 8837fc75426831d3f895d460bf86d5634f4458ce (patch) | |
| tree | 2a1ca409b65b01801d3923bc51d48ccef068c861 /compiler/rustc_session/src/options.rs | |
| parent | b5f4883a06f1d861b108ac892f07f4fa37eb1bed (diff) | |
| download | rust-8837fc75426831d3f895d460bf86d5634f4458ce.tar.gz rust-8837fc75426831d3f895d460bf86d5634f4458ce.zip | |
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 2b158627751..6ce737d4d45 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"), |
