diff options
| author | bors <bors@rust-lang.org> | 2022-09-13 04:00:24 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2022-09-13 04:00:24 +0000 |
| commit | 9da4644d5685aa0c4daa4aea6ddc9eb834ae51cc (patch) | |
| tree | 2e1a170648c34c92b6847a271028e52e026c2f7c /compiler/rustc_interface/src | |
| parent | 0df1ddc185af0d1b8d476851a50c42a31ebbb741 (diff) | |
| parent | ffa83596fe216c19e9d58c8318786edd07d23d5f (diff) | |
| download | rust-9da4644d5685aa0c4daa4aea6ddc9eb834ae51cc.tar.gz rust-9da4644d5685aa0c4daa4aea6ddc9eb834ae51cc.zip | |
Auto merge of #100101 - BelovDV:issue-99429, r=petrochenkov
change rlib format to distinguish native dependencies Another one method to solve problem mentioned in #99429. Changed .rlib format, it contains all bundled native libraries as archieves. At link time rlib is unpacked and native dependencies linked separately. New behavior hidden under separate_native_rlib_dependencies flag.
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 5df5ab3ddc0..c7615a5775e 100644 --- a/compiler/rustc_interface/src/tests.rs +++ b/compiler/rustc_interface/src/tests.rs @@ -765,6 +765,7 @@ fn test_unstable_options_tracking_hash() { tracked!(no_profiler_runtime, true); tracked!(oom, OomStrategy::Panic); tracked!(osx_rpath_install_name, true); + tracked!(packed_bundled_libs, true); tracked!(panic_abort_tests, true); tracked!(panic_in_drop, PanicStrategy::Abort); tracked!(pick_stable_methods_before_any_unstable, false); |
