Skip to content

Commit 61907d5

Browse files
authored
Unrolled build for rust-lang#135561
Rollup merge of rust-lang#135561 - Zalathar:link-dead-code, r=saethlin Update docs for `-Clink-dead-code` to discourage its use The `-Clink-dead-code` flag was originally added way back in rust-lang#31368, apparently to help improve the output of some older forms of code coverage measurement, and also to address some use-cases for wanting to suppress linker flags like `-dead_strip` and `--gc-section`. In the past it might have also been useful in conjunction with `-Cinstrument-coverage`, but subsequent improvements to coverage instrumentation have made it unnecessary there. [It is also currently used by cargo-fuzz by default](rust-fuzz/cargo-fuzz#391), for reasons that are possibly no longer relevant. --- The flag currently does more than its name suggests, affecting not just linker flags, but also monomorphization decisions. It has also contributed to ICEs (e.g. rust-lang#135515) that would not have occurred without link-dead-code. --- For now, this PR just updates the documentation to be more realistic about what the flag does, and when it should be used (approximately never). In the future, it might be worth looking into properly deprecating this flag, and perhaps making it a no-op if feasible.
2 parents 99db273 + 2238b00 commit 61907d5

File tree

3 files changed

+6
-13
lines changed

3 files changed

+6
-13
lines changed

compiler/rustc_session/src/config.rs

-7
Original file line numberDiff line numberDiff line change
@@ -132,13 +132,6 @@ pub enum LtoCli {
132132
}
133133

134134
/// The different settings that the `-C instrument-coverage` flag can have.
135-
///
136-
/// Coverage instrumentation now supports combining `-C instrument-coverage`
137-
/// with compiler and linker optimization (enabled with `-O` or `-C opt-level=1`
138-
/// and higher). Nevertheless, there are many variables, depending on options
139-
/// selected, code structure, and enabled attributes. If errors are encountered,
140-
/// either while compiling or when generating `llvm-cov show` reports, consider
141-
/// lowering the optimization level, or including/excluding `-C link-dead-code`.
142135
#[derive(Clone, Copy, PartialEq, Hash, Debug)]
143136
pub enum InstrumentCoverage {
144137
/// `-C instrument-coverage=no` (or `off`, `false` etc.)

compiler/rustc_session/src/options.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1638,7 +1638,7 @@ options! {
16381638
"extra arguments to append to the linker invocation (space separated)"),
16391639
#[rustc_lint_opt_deny_field_access("use `Session::link_dead_code` instead of this field")]
16401640
link_dead_code: Option<bool> = (None, parse_opt_bool, [TRACKED],
1641-
"keep dead code at link time (useful for code coverage) (default: no)"),
1641+
"try to generate and link dead code (default: no)"),
16421642
link_self_contained: LinkSelfContained = (LinkSelfContained::default(), parse_link_self_contained, [UNTRACKED],
16431643
"control whether to link Rust provided C objects/libraries or rely \
16441644
on a C toolchain or linker installed in the system"),

src/doc/rustc/src/codegen-options/index.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -207,14 +207,14 @@ options should be separated by spaces.
207207

208208
## link-dead-code
209209

210-
This flag controls whether the linker will keep dead code. It takes one of
211-
the following values:
210+
Tries to generate and link dead code that would otherwise not be generated or
211+
linked. It takes one of the following values:
212212

213-
* `y`, `yes`, `on`, `true` or no value: keep dead code.
213+
* `y`, `yes`, `on`, `true` or no value: try to keep dead code.
214214
* `n`, `no`, `off` or `false`: remove dead code (the default).
215215

216-
An example of when this flag might be useful is when trying to construct code coverage
217-
metrics.
216+
This flag was historically used to help improve some older forms of code
217+
coverage measurement. Its use is not recommended.
218218

219219
## link-self-contained
220220

0 commit comments

Comments
 (0)