about summary refs log tree commit diff
path: root/compiler/rustc_interface/src
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2022-01-20 17:10:32 +0100
committerGitHub <noreply@github.com>2022-01-20 17:10:32 +0100
commit02379e917b2e187997bdabd290e61ecf0744faaf (patch)
tree90ecc736327bbe5a68f50eb5e9e16a2fdfdc1295 /compiler/rustc_interface/src
parentd188287a54f1bb202e4c16067a6c4cdff4bdfd6c (diff)
parent371bd4643587da89ce1bbe7e577f49d9b8acb990 (diff)
downloadrust-02379e917b2e187997bdabd290e61ecf0744faaf.tar.gz
rust-02379e917b2e187997bdabd290e61ecf0744faaf.zip
Rollup merge of #91606 - joshtriplett:stabilize-print-link-args, r=pnkfelix
Stabilize `-Z print-link-args` as `--print link-args`

We have stable options for adding linker arguments; we should have a
stable option to help debug linker arguments.

Add documentation for the new option. In the documentation, make it clear that
the *exact* format of the output is not a stable guarantee.
Diffstat (limited to 'compiler/rustc_interface/src')
-rw-r--r--compiler/rustc_interface/src/tests.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler/rustc_interface/src/tests.rs b/compiler/rustc_interface/src/tests.rs
index 0e27a82b2b1..44acbd3cf21 100644
--- a/compiler/rustc_interface/src/tests.rs
+++ b/compiler/rustc_interface/src/tests.rs
@@ -678,7 +678,6 @@ fn test_debugging_options_tracking_hash() {
     // `pre_link_arg` is omitted because it just forwards to `pre_link_args`.
     untracked!(pre_link_args, vec![String::from("abc"), String::from("def")]);
     untracked!(profile_closures, true);
-    untracked!(print_link_args, true);
     untracked!(print_llvm_passes, true);
     untracked!(print_mono_items, Some(String::from("abc")));
     untracked!(print_type_sizes, true);