diff options
| author | Tyler Mandry <tmandry@gmail.com> | 2020-09-01 18:24:36 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-01 18:24:36 -0700 |
| commit | 4a6aa350c71859759cff6785b1e64ed348362a7d (patch) | |
| tree | 047864dfc6f803dbc5c217f0aeda63710c175ab9 /compiler/rustc_interface/src | |
| parent | b01d0b141431665a39637b35cefb336583e4446a (diff) | |
| parent | 23f0ccfe5d9999a54dfcc4f5ba953981ba092aa7 (diff) | |
| download | rust-4a6aa350c71859759cff6785b1e64ed348362a7d.tar.gz rust-4a6aa350c71859759cff6785b1e64ed348362a7d.zip | |
Rollup merge of #76158 - mati865:self-contained-option, r=petrochenkov
Stabilise link-self-contained option MCP has been accepted: https://github.com/rust-lang/compiler-team/issues/343 I'll add improved heuristic in next PR.
Diffstat (limited to 'compiler/rustc_interface/src')
| -rw-r--r-- | compiler/rustc_interface/src/tests.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/rustc_interface/src/tests.rs b/compiler/rustc_interface/src/tests.rs index cb906b3d911..ada8dc90494 100644 --- a/compiler/rustc_interface/src/tests.rs +++ b/compiler/rustc_interface/src/tests.rs @@ -402,6 +402,7 @@ fn test_codegen_options_tracking_hash() { // `link_arg` is omitted because it just forwards to `link_args`. untracked!(link_args, vec![String::from("abc"), String::from("def")]); untracked!(link_dead_code, Some(true)); + untracked!(link_self_contained, Some(true)); untracked!(linker, Some(PathBuf::from("linker"))); untracked!(linker_flavor, Some(LinkerFlavor::Gcc)); untracked!(no_stack_check, true); |
