Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rollup of 13 pull requests #120271

Closed
wants to merge 30 commits into from
Closed

Conversation

fmease
Copy link
Member

@fmease fmease commented Jan 23, 2024

Successful merges:

r? @ghost
@rustbot modify labels: rollup

Create a similar rollup

oberien and others added 30 commits December 16, 2023 23:44
On ELF, the text section is opened with ".text", on MachO with
".section __TEXT,__text".

Previously, on ELF this test was actually matching a GNU note
section, which is no longer emitted on Solaris starting with
LLVM 18.

Fixes rust-lang#120105.
Removing opener 0.5.2, and updating cargo_metadata 0.15.4 -> cargo_metadata 0.18.0

Reverting rustfmt change

Reverting rustfmt patch

Reverting dependency change for clippy
…vidtwco

Suggest array::from_fn for array initialization

Fixes rust-lang#119530
Split assembly tests for ELF and MachO

On ELF, the text section is opened with ".text", on MachO with ".section __TEXT,__text".

Previously, on ELF this test was actually matching a GNU note section, which is no longer emitted on Solaris starting with LLVM 18.

Fixes rust-lang#120105.

r? `@davidtwco`
…trieb

Remove duplicate dependencies for rustc

Removed several duplicates for rustc: rust-lang#75704

Several duplicates still exist, but an external library would have to be updated first.

These are the duplicate dependencies still outstanding:
```
annotate-snippets v0.9.1
annotate-snippets v0.10.1

bitflags v1.3.2
bitflags v2.4.1

cargo_metadata v0.15.4
cargo_metadata v0.18.0

darling v0.14.4
darling v0.20.3

darling_core v0.14.4
darling_core v0.20.3

darling_macro v0.14.4
darling_macro v0.20.3

regex-automata v0.1.10
regex-automata v0.2.0
regex-automata v0.4.3

regex-syntax v0.6.29
regex-syntax v0.7.2
regex-syntax v0.8.2

self_cell v0.10.3
self_cell v1.0.2

syn v1.0.109
syn v2.0.32

toml v0.5.11
toml v0.7.5
```

It should not be hard to consolidate these remaining duplicate dependencies, but it will take time as it would be pull requests for external crates.

r? ``@jyn514``
coverage: Don't instrument `#[automatically_derived]` functions

This PR makes the coverage instrumentor detect and skip functions that have [`#[automatically_derived]`](https://doc.rust-lang.org/reference/attributes/derive.html#the-automatically_derived-attribute) on their enclosing impl block.

Most notably, this means that methods generated by built-in derives (e.g. `Clone`, `Debug`, `PartialEq`) are now ignored by coverage instrumentation, and won't appear as executed or not-executed in coverage reports.

This is a noticeable change in user-visible behaviour, but overall I think it's a net improvement. For example, we've had a few user requests for this sort of change (e.g. rust-lang#105055, rust-lang#84605 (comment)), and I believe it's the behaviour that most users will expect/prefer by default.

It's possible to imagine situations where users would want to instrument these derived implementations, but I think it's OK to treat that as an opportunity to consider adding more fine-grained option flags to control the details of coverage instrumentation, while leaving this new behaviour as the default.

(Also note that while `-Cinstrument-coverage` is a stable feature, the exact details of coverage instrumentation are allowed to change. So we *can* make this change; the main question is whether we *should*.)

Fixes rust-lang#105055.
…specs, r=wesleywiser

compiler: update freebsd and netbsd base specs.

both support thread local.
Bump some deps with syn 1.0 dependencies

cc rust-lang#109302

`cargo update`ing `unic-langid` and `object` removes two dependencies on Syn 1.0.
Update some deps with `bitflags` v1 dependencies

This only leaves `pulldown-cmark` (which has updated to bitflags v2 in Git) and `rustc_apfloat` (PR opened previously at rust-lang/rustc_apfloat#12)
Use `Self` in `NonZero*` implementations.

This slightly reduces the size of the eventual diff when making these generic, since this can be merged independently.
…estebank

Re-add estebank to review rotation

r? `@compiler-errors`
…-errors

rename `RawTy` to `LoweredTy`

I believe this name to more closely match its purpose

r? `@compiler-errors`
A bunch of random modifications

r? oli-obk

Kitchen sink of changes that I didn't know where to put elsewhere. Documentation tweaks mostly, but also removing some unreachable code and simplifying the pretty printing for closures/coroutines.
@rustbot rustbot added T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. T-libs Relevant to the library team, which will review and decide on the PR/issue. WG-trait-system-refactor The Rustc Trait System Refactor Initiative rollup A PR which is a rollup labels Jan 23, 2024
@fmease
Copy link
Member Author

fmease commented Jan 23, 2024

@bors r+ rollup=never p=13

@bors
Copy link
Contributor

bors commented Jan 23, 2024

📌 Commit 9ff82a8 has been approved by fmease

It is now in the queue for this repository.

@bors bors added S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Jan 23, 2024
@bors
Copy link
Contributor

bors commented Jan 23, 2024

⌛ Testing commit 9ff82a8 with merge 8a676e9...

bors added a commit to rust-lang-ci/rust that referenced this pull request Jan 23, 2024
Rollup of 13 pull requests

Successful merges:

 - rust-lang#119028 (Add more weirdness to weird-exprs.rs)
 - rust-lang#119805 (Suggest array::from_fn for array initialization)
 - rust-lang#120124 (Split assembly tests for ELF and MachO)
 - rust-lang#120177 (Remove duplicate dependencies for rustc)
 - rust-lang#120185 (coverage: Don't instrument `#[automatically_derived]` functions)
 - rust-lang#120188 (compiler: update freebsd and netbsd base specs.)
 - rust-lang#120201 (Bump some deps with syn 1.0 dependencies)
 - rust-lang#120215 (Update some deps with `bitflags` v1 dependencies)
 - rust-lang#120244 (Use `Self` in `NonZero*` implementations.)
 - rust-lang#120246 (Re-add estebank to review rotation)
 - rust-lang#120252 (rename `RawTy` to `LoweredTy`)
 - rust-lang#120255 (correct my mailmap entry)
 - rust-lang#120270 (A bunch of random modifications)

r? `@ghost`
`@rustbot` modify labels: rollup
@rust-log-analyzer
Copy link
Collaborator

A job failed! Check out the build log: (web) (plain)

Click to see the possible cause of the failure (guessed by this bot)
Secret source: Actions
Prepare workflow directory
Prepare all required actions
Getting action download info
##[error]Internal server error occurred while resolving "actions/checkout@v4". Internal server error occurred while resolving "actions/upload-artifact@v3"

@bors
Copy link
Contributor

bors commented Jan 23, 2024

💔 Test failed - checks-actions

@bors bors added S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. and removed S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. labels Jan 23, 2024
@fmease
Copy link
Member Author

fmease commented Jan 23, 2024

@bors retry

@bors bors added S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Jan 23, 2024
@bors
Copy link
Contributor

bors commented Jan 23, 2024

⌛ Testing commit 9ff82a8 with merge 1f09e7d...

bors added a commit to rust-lang-ci/rust that referenced this pull request Jan 23, 2024
Rollup of 13 pull requests

Successful merges:

 - rust-lang#119028 (Add more weirdness to weird-exprs.rs)
 - rust-lang#119805 (Suggest array::from_fn for array initialization)
 - rust-lang#120124 (Split assembly tests for ELF and MachO)
 - rust-lang#120177 (Remove duplicate dependencies for rustc)
 - rust-lang#120185 (coverage: Don't instrument `#[automatically_derived]` functions)
 - rust-lang#120188 (compiler: update freebsd and netbsd base specs.)
 - rust-lang#120201 (Bump some deps with syn 1.0 dependencies)
 - rust-lang#120215 (Update some deps with `bitflags` v1 dependencies)
 - rust-lang#120244 (Use `Self` in `NonZero*` implementations.)
 - rust-lang#120246 (Re-add estebank to review rotation)
 - rust-lang#120252 (rename `RawTy` to `LoweredTy`)
 - rust-lang#120255 (correct my mailmap entry)
 - rust-lang#120270 (A bunch of random modifications)

r? `@ghost`
`@rustbot` modify labels: rollup
@rust-log-analyzer
Copy link
Collaborator

The job x86_64-mingw failed! Check out the build log: (web) (plain)

Click to see the possible cause of the failure (guessed by this bot)
failures:

---- [ui] tests\ui\extern\issue-64655-extern-rust-must-allow-unwind.rs#thin0 stdout ----

error in revision `thin0`: test compilation failed although it shouldn't!
status: exit code: 1
command: PATH="C:\a\rust\rust\build\x86_64-pc-windows-gnu\stage2\bin;C:\a\rust\rust\build\x86_64-pc-windows-gnu\stage0-bootstrap-tools\x86_64-pc-windows-gnu\release\deps;C:\a\rust\rust\build\x86_64-pc-windows-gnu\stage0\bin;C:\a\rust\rust\ninja;C:\a\rust\rust\mingw64\bin;C:\hostedtoolcache\windows\Python\3.12.1\x64\Scripts;C:\hostedtoolcache\windows\Python\3.12.1\x64;C:\msys64\usr\bin;C:\a\rust\rust\sccache;C:\Program Files\MongoDB\Server\5.0\bin;C:\aliyun-cli;C:\vcpkg;C:\cf-cli;C:\Program Files (x86)\NSIS;C:\tools\zstd;C:\Program Files\Mercurial;C:\hostedtoolcache\windows\stack\2.13.1\x64;C:\cabal\bin;C:\ghcup\bin;C:\mingw64\bin;C:\Program Files\dotnet;C:\Program Files\MySQL\MySQL Server 5.7\bin;C:\Program Files\R\R-4.3.2\bin\x64;C:\SeleniumWebDrivers\GeckoDriver;C:\SeleniumWebDrivers\EdgeDriver;C:\SeleniumWebDrivers\ChromeDriver;C:\Program Files (x86)\sbt\bin;C:\Program Files (x86)\GitHub CLI;C:\Program Files\Git\bin;C:\Program Files (x86)\pipx_bin;C:\npm\prefix;C:\hostedtoolcache\windows\go\1.20.13\x64\bin;C:\hostedtoolcache\windows\Python\3.7.9\x64\Scripts;C:\hostedtoolcache\windows\Python\3.7.9\x64;C:\hostedtoolcache\windows\Ruby\2.5.9\x64\bin;C:\Program Files\OpenSSL\bin;C:\tools\kotlinc\bin;C:\hostedtoolcache\windows\Java_Temurin-Hotspot_jdk\8.0.392-8\x64\bin;C:\Program Files\ImageMagick-7.1.1-Q16-HDRI;C:\Program Files\Microsoft SDKs\Azure\CLI2\wbin;C:\ProgramData\kind;C:\Program Files\Eclipse Foundation\jdk-8.0.302.8-hotspot\bin;C:\ProgramData\Chocolatey\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\PowerShell\7;C:\Program Files\Microsoft\Web Platform Installer;C:\Program Files\Microsoft SQL Server\130\Tools\Binn;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\170\Tools\Binn;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Program Files (x86)\Microsoft SQL Server\110\DTS\Binn;C:\Program Files (x86)\Microsoft SQL Server\120\DTS\Binn;C:\Program Files (x86)\Microsoft SQL Server\130\DTS\Binn;C:\Program Files (x86)\Microsoft SQL Server\140\DTS\Binn;C:\Program Files (x86)\Microsoft SQL Server\150\DTS\Binn;C:\Program Files (x86)\Microsoft SQL Server\160\DTS\Binn;C:\Strawberry\c\bin;C:\Strawberry\perl\site\bin;C:\Strawberry\perl\bin;C:\ProgramData\chocolatey\lib\pulumi\tools\Pulumi\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\CMake\bin;C:\ProgramData\chocolatey\lib\maven\apache-maven-3.8.7\bin;C:\Program Files\Microsoft Service Fabric\bin\Fabric\Fabric.Code;C:\Program Files\Microsoft SDKs\Service Fabric\Tools\ServiceFabricLocalClusterManager;C:\Program Files\nodejs;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files\GitHub CLI;C:\tools\php;C:\Program Files (x86)\sbt\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Amazon\SessionManagerPlugin\bin;C:\Program Files\Amazon\AWSSAMCLI\bin;C:\Program Files (x86)\Google\Cloud SDK\google-cloud-sdk\bin;C:\Program Files (x86)\Microsoft BizTalk Server;C:\Program Files\LLVM\bin;C:\Users\runneradmin\.dotnet\tools;C:\Users\runneradmin\.cargo\bin;C:\Users\runneradmin\AppData\Local\Microsoft\WindowsApps" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\stage2\\bin\\rustc.exe" "C:\\a\\rust\\rust\\tests\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=C:\\Users\\runneradmin\\.cargo" "--sysroot" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\stage2" "--target=x86_64-pc-windows-gnu" "--cfg" "thin0" "--error-format" "json" "--json" "future-incompat" "-Ccodegen-units=1" "-Zui-testing" "-Zdeduplicate-diagnostics=no" "-Zwrite-long-types-to-disk=no" "-Cstrip=debuginfo" "-o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin0\\a.exe" "-A" "internal_features" "-Crpath" "-Cdebuginfo=0" "-Lnative=C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\native\\rust-test-helpers" "-L" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin0\\auxiliary" "-C" "opt-level=0" "-C" "lto=thin"
--- stderr -------------------------------
--- stderr -------------------------------
error: linking with `x86_64-w64-mingw32-gcc` failed: exit code: 1
   |
   = note: "x86_64-w64-mingw32-gcc" "-fno-use-linker-plugin" "-Wl,--dynamicbase" "-Wl,--disable-auto-image-base" "-m64" "-Wl,--high-entropy-va" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\stage2\\lib\\rustlib\\x86_64-pc-windows-gnu\\lib\\rsbegin.o" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcztmheK\\symbols.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin0\\a.addr2line-0feb35ddf8fe4007.addr2line.84456fe4de9ec2be-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin0\\a.adler-65fd96764d350467.adler.30575fc27df57a2d-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin0\\a.alloc-671b2aa317f409e1.alloc.1f497edeb05737b0-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin0\\a.cfg_if-733aafd18f9c2e1f.cfg_if.964039d0ecc99d6f-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin0\\a.core-36315962d2350d13.core.404611bfa6ad60c6-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin0\\a.gimli-44704f3584b2a287.gimli.268ad99b86010646-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin0\\a.hashbrown-63a4b27f0f62ea34.hashbrown.f7c9e684435e10e0-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin0\\a.issue_64655_extern_rust_must_allow_unwind.56e668df17fe0d16-cgu.0.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin0\\a.janexv6nbuju7j4.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin0\\a.libc-bc580ebd3d108d02.libc.ebdcb4beea75b7fd-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin0\\a.memchr-1b33005301bfae8b.memchr.ec454a5bca71e7b2-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin0\\a.miniz_oxide-03675b04565cead2.miniz_oxide.802ad99a5405f4a5-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin0\\a.object-b0211d7f110be572.object.d5261ef1aafbe3e7-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin0\\a.panic_unwind-2bd6578291ed7e71.panic_unwind.e05110faf95f2043-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin0\\a.rustc_demangle-7a60d81ab35cf473.rustc_demangle.8f207185a84b6555-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin0\\a.rustc_std_workspace_alloc-16632ae935f7cd5d.rustc_std_workspace_alloc.d5366ea7649e5ece-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin0\\a.rustc_std_workspace_core-731faf526b84c3fa.rustc_std_workspace_core.b9286444359cf56d-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin0\\a.std-9330eb6bebc3439a.std.e6e02910d812e59a-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin0\\a.std_detect-ca8cebc464eef20f.std_detect.d266b33de4d5031f-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin0\\a.unwind-99b5d815eb4b36e0.unwind.f10177f01ff0eb3e-cgu.0.rcgu.o.rcgu.o" "-L" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\native\\rust-test-helpers" "-L" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin0\\auxiliary" "-L" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\stage2\\lib\\rustlib\\x86_64-pc-windows-gnu\\lib" "-Wl,-Bstatic" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\stage2\\lib\\rustlib\\x86_64-pc-windows-gnu\\lib\\libcompiler_builtins-09ae3089b1762d56.rlib" "-Wl,-Bdynamic" "-lkernel32" "-ladvapi32" "-lbcrypt" "-lkernel32" "-lntdll" "-luserenv" "-lws2_32" "-lkernel32" "-lws2_32" "-lkernel32" "-lntdll" "-lkernel32" "-lgcc_eh" "-l:libpthread.a" "-lmsvcrt" "-lmingwex" "-lmingw32" "-lgcc" "-lmsvcrt" "-luser32" "-lkernel32" "-Wl,--nxcompat" "-L" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\stage2\\lib\\rustlib\\x86_64-pc-windows-gnu\\lib" "-o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin0\\a.exe" "-Wl,--gc-sections" "-no-pie" "-Wl,--strip-debug" "-nodefaultlibs" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\stage2\\lib\\rustlib\\x86_64-pc-windows-gnu\\lib\\rsend.o"
   = note: Warning: .drectve `-exclude-symbols:"_ZN4core3fmt5Write9write_fmt17ha2140268a76f6c60E.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3ptr37drop_in_place$LT$core..fmt..Error$GT$17h9e9aa118f8ba46ceE.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3ptr42drop_in_place$LT$alloc..string..String$GT$17h2d922bdf425d1a96E.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN53_$LT$core..fmt..Error$u20$as$u20$core..fmt..Debug$GT$3fmt17hce89244e36204b74E.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN69_$LT$core..alloc..layout..LayoutError$u20$as$u20$core..fmt..Debug$GT$3fmt17h710a50c4a67a96f0E.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17h3657bc5ffdf6fa77E.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$16reserve_for_push17h266b9a7801acb1c2E.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN5alloc7raw_vec11finish_grow17h0f3e4cef50ea850dE.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN5alloc6string6String4push17h1b25908b65c65b0cE.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN58_$LT$alloc..string..String$u20$as$u20$core..fmt..Write$GT$9write_str17hd379a9a08ad05cc4E.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN58_$LT$alloc..string..String$u20$as$u20$core..fmt..Write$GT$10write_char17h49f05ab3fba45ca7E.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN132_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$alloc..vec..spec_extend..SpecExtend$LT$$RF$T$C$core..slice..iter..Iter$LT$T$GT$$GT$$GT$11spec_extend17h5e159b78adcb9d06E.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN5alloc3vec16Vec$LT$T$C$A$GT$16into_boxed_slice17h6c1e64d75b16bc3bE.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.2.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"str.0.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.5.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"str.1.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.10.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.11.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.12.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.13.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.14.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.26.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.27.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.28.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.29.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.32.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.33.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.34.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.38.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.39.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.44.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.45.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.46.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.49.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.50.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.51.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.52.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.77.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.78.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.79.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.83.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.84.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.104.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.105.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.106.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.110.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.136.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.137.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.149.llvm.477883611118121142" ' unrecognized
           Warning: corrupt .drectve at end of def file
           Warning: .drectve `-exclude-symbols:"_ZN4core3ops8function6FnOnce9call_once17h5d5af21263bb5df2E.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3num14from_str_radix17h66863b70c6c9eedeE.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3num14from_str_radix17h66f0677d770cb3c8E.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN69_$LT$core..num..nonzero..NonZeroUsize$u20$as$u20$core..fmt..Debug$GT$3fmt17hff891c1c4ce72c07E.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3fmt3num50_$LT$impl$u20$core..fmt..Debug$u20$for$u20$u32$GT$3fmt17h998d62c5f9ace547E.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3fmt3num3imp7fmt_u6417hfa1f14ab0d195b2dE.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN44_$LT$$RF$T$u20$as$u20$core..fmt..Display$GT$3fmt17ha8eaae64be346f49E.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"str.0.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"str.1.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.4.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.324.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.325.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.326.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.327.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.335.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.354.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.361.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.362.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.424.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.429.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.441.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.485.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.486.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.491.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.495.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.507.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.508.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.511.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.540.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.541.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.542.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.543.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.544.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.545.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.714.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.718.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.734.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.735.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.774.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.775.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.776.llvm.11863337995874546624" ' unrecognized
           Warning: corrupt .drectve at end of def file
           Warning: .drectve `-exclude-symbols:"_ZN4core3ptr52drop_in_place$LT$gimli..read..abbrev..Attributes$GT$17h514b2271fbb65d18E.llvm.16518632798636311580" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core9panicking13assert_failed17he2e3008683c980caE.llvm.16518632798636311580" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.aad188865ab0d35b5d2332aba2d157dc.17.llvm.16518632798636311580" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.aad188865ab0d35b5d2332aba2d157dc.70.llvm.16518632798636311580" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.aad188865ab0d35b5d2332aba2d157dc.76.llvm.16518632798636311580" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.aad188865ab0d35b5d2332aba2d157dc.77.llvm.16518632798636311580" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.aad188865ab0d35b5d2332aba2d157dc.78.llvm.16518632798636311580" ' unrecognized
           Warning: corrupt .drectve at end of def file
           Warning: corrupt .drectve at end of def file
           Warning: .drectve `-exclude-symbols:"anon.8cc963e752ca42a7170d7cbf41c85434.18.llvm.3497126311449104390" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.8cc963e752ca42a7170d7cbf41c85434.20.llvm.3497126311449104390" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.8cc963e752ca42a7170d7cbf41c85434.21.llvm.3497126311449104390" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.8cc963e752ca42a7170d7cbf41c85434.52.llvm.3497126311449104390" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.8cc963e752ca42a7170d7cbf41c85434.53.llvm.3497126311449104390" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.8cc963e752ca42a7170d7cbf41c85434.56.llvm.3497126311449104390" ' unrecognized
           Warning: corrupt .drectve at end of def file
           Warning: .drectve `-exclude-symbols:"_ZN4core3ptr54drop_in_place$LT$panic_unwind..real_imp..Exception$GT$17h32dc8e8274c5dd02E.llvm.2102707570818672813" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN12panic_unwind8real_imp5panic17exception_cleanup17h1152c94d9c8ddd7eE.llvm.2102707570818672813" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.97e4a8a199518c575ceab5ee49f3765e.0.llvm.2102707570818672813" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.97e4a8a199518c575ceab5ee49f3765e.1.llvm.2102707570818672813" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.97e4a8a199518c575ceab5ee49f3765e.2.llvm.2102707570818672813" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.97e4a8a199518c575ceab5ee49f3765e.3.llvm.2102707570818672813" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.97e4a8a199518c575ceab5ee49f3765e.4.llvm.2102707570818672813" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.97e4a8a199518c575ceab5ee49f3765e.5.llvm.2102707570818672813" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.97e4a8a199518c575ceab5ee49f3765e.6.llvm.2102707570818672813" ' unrecognized
           Warning: corrupt .drectve at end of def file
           Warning: .drectve `-exclude-symbols:"_ZN4core3fmt5Write10write_char17h631e258bbc9c093cE.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3fmt5Write9write_fmt17h043bc959be52768cE.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3ops8function2Fn4call17he906011a02b6814bE.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3ops8function5FnMut8call_mut17hbc000abc1cb066eaE.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3ops8function6FnOnce40call_once$u7b$$u7b$vtable.shim$u7d$$u7d$17h6814ecf99eb951e6E.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3ptr100drop_in_place$LT$std..io..Write..write_fmt..Adapter$LT$std..sys..pal..windows..stdio..Stderr$GT$$GT$17h7a93e6af7a6039acE.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3ptr130drop_in_place$LT$core..result..Result$LT$$LP$$RP$$C$alloc..boxed..Box$LT$dyn$u20$core..any..Any$u2b$core..marker..Send$GT$$GT$$GT$17hbadab65e0d841d26E.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3ptr131drop_in_place$LT$alloc..boxed..Box$LT$dyn$u20$core..ops..function..FnOnce$LT$$LP$$RP$$GT$$u2b$Output$u20$$u3d$$u20$$LP$$RP$$GT$$GT$17h421884306f4a7db2E.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3ptr29drop_in_place$LT$$LP$$RP$$GT$17h1ab82d453af6287dE.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3ptr43drop_in_place$LT$std..io..error..Custom$GT$17h3418a43b62b09159E.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3ptr57drop_in_place$LT$std..io..error..repr_bitpacked..Repr$GT$17h38ac991276a572dfE.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3ptr81drop_in_place$LT$core..result..Result$LT$$LP$$RP$$C$std..io..error..Error$GT$$GT$17h10fe90a3d593edfbE.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3ptr9alignment9Alignment13new_unchecked17h7a32d424e0799e60E.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN5alloc4sync16Arc$LT$T$C$A$GT$9drop_slow17h1bbbcf11faae9f6fE.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN5alloc4sync16Arc$LT$T$C$A$GT$9drop_slow17hff1acb732de8b8a7E.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN72_$LT$alloc..boxed..Box$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h16af1b1c0e5ce6edE.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std2io5error14repr_bitpacked4Repr6new_os17h7f8cc6b3d33b68b1E.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std2io5error14repr_bitpacked11decode_repr17h4cffc2593d28bfaaE.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN80_$LT$std..io..Write..write_fmt..Adapter$LT$T$GT$$u20$as$u20$core..fmt..Write$GT$9write_str17haba5e0ff1c35369bE.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std10sys_common9backtrace26__rust_end_short_backtrace17ha76dcf81c1d09dadE.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std5alloc24default_alloc_error_hook17h801efb0a596690efE.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std3sys3pal7windows5stdio5write17hd988b46265f77bc4E.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std3sys3pal7windows7to_u16s5inner17h34a9be743fbd2997E.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std9panicking11panic_count17LOCAL_PANIC_COUNT7__getit17h99b64173983fd1acE.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std10sys_common11thread_info11THREAD_INFO7__getit17h96ae3e0b48bc9ff3E.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std2io5stdio14OUTPUT_CAPTURE7__getit17h326c45e8ef8c36d0E.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"str.0.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.2.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"str.1.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.44.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.45.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.46.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.58.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.59.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.60.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.62.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.63.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.64.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.65.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.117.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.179.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.409.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.456.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.457.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.458.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.459.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.601.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.603.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.604.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.605.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.609.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.610.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.611.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.612.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std2io5stdio19OUTPUT_CAPTURE_USED17h6d00a41ec52ded38E.0.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.692.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.693.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.694.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.722.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.723.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.908.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.909.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.910.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std10sys_common6thread9min_stack3MIN17he664a6cb9c0a6b7dE.0.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.911.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.912.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std5alloc4HOOK17h2e7569f6b355dc5fE.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.960.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.961.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.962.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.963.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.964.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.965.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.966.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.967.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.968.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.969.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.981.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.982.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.1104.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.1105.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.1106.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.1265.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.1266.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.1267.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.1268.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.1286.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.1287.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.1288.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.1289.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std3sys3pal7windows14thread_parking18keyed_event_handle6HANDLE17h5ae4d4de1b6de2a5E.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std3sys3pal7windows1c20SetThreadDescription3PTR17h2c8200ee9484f246E.0.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std3sys3pal7windows1c19WakeByAddressSingle3PTR17heb15d3a5a9d7dda3E.0.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std3sys3pal7windows1c18NtCreateKeyedEvent3PTR17h4edca4106c7dac90E.0.llvm.16513687735375067440" ' unrecognized
           Warning: corrupt .drectve at end of def file
           Warning: corrupt .drectve at end of def file
           C:/a/rust/rust/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: C:\a\rust\rust\build\x86_64-pc-windows-gnu\test\ui\extern\issue-64655-extern-rust-must-allow-unwind.thin0\a.object-b0211d7f110be572.object.d5261ef1aafbe3e7-cgu.0.rcgu.o.rcgu.o:object.d5261ef1aaf:(.text+0x9b): undefined reference to `__imp__ZN6memchr4arch6x86_646memchr10memchr_raw2FN17ha69325e18976b9e0E'
           C:/a/rust/rust/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: C:\a\rust\rust\build\x86_64-pc-windows-gnu\test\ui\extern\issue-64655-extern-rust-must-allow-unwind.thin0\a.object-b0211d7f110be572.object.d5261ef1aafbe3e7-cgu.0.rcgu.o.rcgu.o:object.d5261ef1aaf:(.text+0x818): undefined reference to `__imp__ZN6memchr4arch6x86_646memchr10memchr_raw2FN17ha69325e18976b9e0E'
           C:/a/rust/rust/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: C:\a\rust\rust\build\x86_64-pc-windows-gnu\test\ui\extern\issue-64655-extern-rust-must-allow-unwind.thin0\a.std-9330eb6bebc3439a.std.e6e02910d812e59a-cgu.0.rcgu.o.rcgu.o:std.e6e02910d812e5:(.text+0x6b024): undefined reference to `__imp__ZN6memchr4arch6x86_646memchr10memchr_raw2FN17ha69325e18976b9e0E'
           collect2.exe: error: ld returned 1 exit status
           
   = note: some `extern` functions couldn't be found; some native libraries may need to be installed or have their path specified
   = note: use the `-l` flag to specify native libraries to link
   = note: use the `cargo:rustc-link-lib` directive to specify the native libraries to link with Cargo (see https://doc.rust-lang.org/cargo/reference/build-scripts.html#rustc-link-lib)
error: aborting due to 1 previous error
------------------------------------------



---- [ui] tests\ui\extern\issue-64655-allow-unwind-when-calling-panic-directly.rs#thin stdout ----

error in revision `thin`: test compilation failed although it shouldn't!
status: exit code: 1
command: PATH="C:\a\rust\rust\build\x86_64-pc-windows-gnu\stage2\bin;C:\a\rust\rust\build\x86_64-pc-windows-gnu\stage0-bootstrap-tools\x86_64-pc-windows-gnu\release\deps;C:\a\rust\rust\build\x86_64-pc-windows-gnu\stage0\bin;C:\a\rust\rust\ninja;C:\a\rust\rust\mingw64\bin;C:\hostedtoolcache\windows\Python\3.12.1\x64\Scripts;C:\hostedtoolcache\windows\Python\3.12.1\x64;C:\msys64\usr\bin;C:\a\rust\rust\sccache;C:\Program Files\MongoDB\Server\5.0\bin;C:\aliyun-cli;C:\vcpkg;C:\cf-cli;C:\Program Files (x86)\NSIS;C:\tools\zstd;C:\Program Files\Mercurial;C:\hostedtoolcache\windows\stack\2.13.1\x64;C:\cabal\bin;C:\ghcup\bin;C:\mingw64\bin;C:\Program Files\dotnet;C:\Program Files\MySQL\MySQL Server 5.7\bin;C:\Program Files\R\R-4.3.2\bin\x64;C:\SeleniumWebDrivers\GeckoDriver;C:\SeleniumWebDrivers\EdgeDriver;C:\SeleniumWebDrivers\ChromeDriver;C:\Program Files (x86)\sbt\bin;C:\Program Files (x86)\GitHub CLI;C:\Program Files\Git\bin;C:\Program Files (x86)\pipx_bin;C:\npm\prefix;C:\hostedtoolcache\windows\go\1.20.13\x64\bin;C:\hostedtoolcache\windows\Python\3.7.9\x64\Scripts;C:\hostedtoolcache\windows\Python\3.7.9\x64;C:\hostedtoolcache\windows\Ruby\2.5.9\x64\bin;C:\Program Files\OpenSSL\bin;C:\tools\kotlinc\bin;C:\hostedtoolcache\windows\Java_Temurin-Hotspot_jdk\8.0.392-8\x64\bin;C:\Program Files\ImageMagick-7.1.1-Q16-HDRI;C:\Program Files\Microsoft SDKs\Azure\CLI2\wbin;C:\ProgramData\kind;C:\Program Files\Eclipse Foundation\jdk-8.0.302.8-hotspot\bin;C:\ProgramData\Chocolatey\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\PowerShell\7;C:\Program Files\Microsoft\Web Platform Installer;C:\Program Files\Microsoft SQL Server\130\Tools\Binn;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\170\Tools\Binn;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Program Files (x86)\Microsoft SQL Server\110\DTS\Binn;C:\Program Files (x86)\Microsoft SQL Server\120\DTS\Binn;C:\Program Files (x86)\Microsoft SQL Server\130\DTS\Binn;C:\Program Files (x86)\Microsoft SQL Server\140\DTS\Binn;C:\Program Files (x86)\Microsoft SQL Server\150\DTS\Binn;C:\Program Files (x86)\Microsoft SQL Server\160\DTS\Binn;C:\Strawberry\c\bin;C:\Strawberry\perl\site\bin;C:\Strawberry\perl\bin;C:\ProgramData\chocolatey\lib\pulumi\tools\Pulumi\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\CMake\bin;C:\ProgramData\chocolatey\lib\maven\apache-maven-3.8.7\bin;C:\Program Files\Microsoft Service Fabric\bin\Fabric\Fabric.Code;C:\Program Files\Microsoft SDKs\Service Fabric\Tools\ServiceFabricLocalClusterManager;C:\Program Files\nodejs;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files\GitHub CLI;C:\tools\php;C:\Program Files (x86)\sbt\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Amazon\SessionManagerPlugin\bin;C:\Program Files\Amazon\AWSSAMCLI\bin;C:\Program Files (x86)\Google\Cloud SDK\google-cloud-sdk\bin;C:\Program Files (x86)\Microsoft BizTalk Server;C:\Program Files\LLVM\bin;C:\Users\runneradmin\.dotnet\tools;C:\Users\runneradmin\.cargo\bin;C:\Users\runneradmin\AppData\Local\Microsoft\WindowsApps" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\stage2\\bin\\rustc.exe" "C:\\a\\rust\\rust\\tests\\ui\\extern\\issue-64655-allow-unwind-when-calling-panic-directly.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=C:\\Users\\runneradmin\\.cargo" "--sysroot" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\stage2" "--target=x86_64-pc-windows-gnu" "--cfg" "thin" "-O" "--error-format" "json" "--json" "future-incompat" "-Ccodegen-units=1" "-Zui-testing" "-Zdeduplicate-diagnostics=no" "-Zwrite-long-types-to-disk=no" "-Cstrip=debuginfo" "-o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-allow-unwind-when-calling-panic-directly.thin\\a.exe" "-A" "internal_features" "-Crpath" "-Cdebuginfo=0" "-Lnative=C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\native\\rust-test-helpers" "-L" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-allow-unwind-when-calling-panic-directly.thin\\auxiliary" "-C" "lto=thin"
--- stderr -------------------------------
--- stderr -------------------------------
error: linking with `x86_64-w64-mingw32-gcc` failed: exit code: 1
   |
   = note: "x86_64-w64-mingw32-gcc" "-fno-use-linker-plugin" "-Wl,--dynamicbase" "-Wl,--disable-auto-image-base" "-m64" "-Wl,--high-entropy-va" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\stage2\\lib\\rustlib\\x86_64-pc-windows-gnu\\lib\\rsbegin.o" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustc2q7593\\symbols.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-allow-unwind-when-calling-panic-directly.thin\\a.2q7kln9uon29stz8.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-allow-unwind-when-calling-panic-directly.thin\\a.addr2line-0feb35ddf8fe4007.addr2line.84456fe4de9ec2be-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-allow-unwind-when-calling-panic-directly.thin\\a.adler-65fd96764d350467.adler.30575fc27df57a2d-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-allow-unwind-when-calling-panic-directly.thin\\a.alloc-671b2aa317f409e1.alloc.1f497edeb05737b0-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-allow-unwind-when-calling-panic-directly.thin\\a.cfg_if-733aafd18f9c2e1f.cfg_if.964039d0ecc99d6f-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-allow-unwind-when-calling-panic-directly.thin\\a.core-36315962d2350d13.core.404611bfa6ad60c6-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-allow-unwind-when-calling-panic-directly.thin\\a.gimli-44704f3584b2a287.gimli.268ad99b86010646-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-allow-unwind-when-calling-panic-directly.thin\\a.hashbrown-63a4b27f0f62ea34.hashbrown.f7c9e684435e10e0-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-allow-unwind-when-calling-panic-directly.thin\\a.issue_64655_allow_unwind_when_calling_panic_directly.41846d3f0a9343bd-cgu.0.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-allow-unwind-when-calling-panic-directly.thin\\a.libc-bc580ebd3d108d02.libc.ebdcb4beea75b7fd-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-allow-unwind-when-calling-panic-directly.thin\\a.memchr-1b33005301bfae8b.memchr.ec454a5bca71e7b2-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-allow-unwind-when-calling-panic-directly.thin\\a.miniz_oxide-03675b04565cead2.miniz_oxide.802ad99a5405f4a5-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-allow-unwind-when-calling-panic-directly.thin\\a.object-b0211d7f110be572.object.d5261ef1aafbe3e7-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-allow-unwind-when-calling-panic-directly.thin\\a.panic_unwind-2bd6578291ed7e71.panic_unwind.e05110faf95f2043-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-allow-unwind-when-calling-panic-directly.thin\\a.rustc_demangle-7a60d81ab35cf473.rustc_demangle.8f207185a84b6555-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-allow-unwind-when-calling-panic-directly.thin\\a.rustc_std_workspace_alloc-16632ae935f7cd5d.rustc_std_workspace_alloc.d5366ea7649e5ece-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-allow-unwind-when-calling-panic-directly.thin\\a.rustc_std_workspace_core-731faf526b84c3fa.rustc_std_workspace_core.b9286444359cf56d-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-allow-unwind-when-calling-panic-directly.thin\\a.std-9330eb6bebc3439a.std.e6e02910d812e59a-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-allow-unwind-when-calling-panic-directly.thin\\a.std_detect-ca8cebc464eef20f.std_detect.d266b33de4d5031f-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-allow-unwind-when-calling-panic-directly.thin\\a.unwind-99b5d815eb4b36e0.unwind.f10177f01ff0eb3e-cgu.0.rcgu.o.rcgu.o" "-L" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\native\\rust-test-helpers" "-L" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-allow-unwind-when-calling-panic-directly.thin\\auxiliary" "-L" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\stage2\\lib\\rustlib\\x86_64-pc-windows-gnu\\lib" "-Wl,-Bstatic" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\stage2\\lib\\rustlib\\x86_64-pc-windows-gnu\\lib\\libcompiler_builtins-09ae3089b1762d56.rlib" "-Wl,-Bdynamic" "-lkernel32" "-ladvapi32" "-lbcrypt" "-lkernel32" "-lntdll" "-luserenv" "-lws2_32" "-lkernel32" "-lws2_32" "-lkernel32" "-lntdll" "-lkernel32" "-lgcc_eh" "-l:libpthread.a" "-lmsvcrt" "-lmingwex" "-lmingw32" "-lgcc" "-lmsvcrt" "-luser32" "-lkernel32" "-Wl,--nxcompat" "-L" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\stage2\\lib\\rustlib\\x86_64-pc-windows-gnu\\lib" "-o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-allow-unwind-when-calling-panic-directly.thin\\a.exe" "-Wl,--gc-sections" "-no-pie" "-Wl,-O1" "-Wl,--strip-debug" "-nodefaultlibs" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\stage2\\lib\\rustlib\\x86_64-pc-windows-gnu\\lib\\rsend.o"
   = note: Warning: .drectve `-exclude-symbols:"_ZN4core3fmt5Write9write_fmt17ha2140268a76f6c60E.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3ptr37drop_in_place$LT$core..fmt..Error$GT$17h9e9aa118f8ba46ceE.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3ptr42drop_in_place$LT$alloc..string..String$GT$17h2d922bdf425d1a96E.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN53_$LT$core..fmt..Error$u20$as$u20$core..fmt..Debug$GT$3fmt17hce89244e36204b74E.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN69_$LT$core..alloc..layout..LayoutError$u20$as$u20$core..fmt..Debug$GT$3fmt17h710a50c4a67a96f0E.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17h3657bc5ffdf6fa77E.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN5alloc6string6String4push17h1b25908b65c65b0cE.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN58_$LT$alloc..string..String$u20$as$u20$core..fmt..Write$GT$9write_str17hd379a9a08ad05cc4E.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN58_$LT$alloc..string..String$u20$as$u20$core..fmt..Write$GT$10write_char17h49f05ab3fba45ca7E.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN132_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$alloc..vec..spec_extend..SpecExtend$LT$$RF$T$C$core..slice..iter..Iter$LT$T$GT$$GT$$GT$11spec_extend17h5e159b78adcb9d06E.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.2.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"str.0.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.5.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"str.1.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.10.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.11.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.12.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.13.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.14.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.26.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.27.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.28.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.29.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.32.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.33.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.34.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.38.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.39.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.44.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.46.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.77.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.78.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.79.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.83.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.84.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.104.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.105.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.106.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.110.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.136.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.137.llvm.477883611118121142" ' unrecognized
           Warning: corrupt .drectve at end of def file
           Warning: .drectve `-exclude-symbols:"_ZN4core3ops8function6FnOnce9call_once17h5d5af21263bb5df2E.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3num14from_str_radix17h66863b70c6c9eedeE.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3num14from_str_radix17h66f0677d770cb3c8E.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN69_$LT$core..num..nonzero..NonZeroUsize$u20$as$u20$core..fmt..Debug$GT$3fmt17hff891c1c4ce72c07E.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3fmt3num50_$LT$impl$u20$core..fmt..Debug$u20$for$u20$u32$GT$3fmt17h998d62c5f9ace547E.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3fmt3num3imp7fmt_u6417hfa1f14ab0d195b2dE.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN44_$LT$$RF$T$u20$as$u20$core..fmt..Display$GT$3fmt17ha8eaae64be346f49E.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"str.0.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"str.1.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.4.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.324.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.325.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.326.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.327.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.335.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.354.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.361.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.362.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.424.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.429.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.441.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.485.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.486.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.491.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.495.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.507.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.508.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.511.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.540.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.541.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.542.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.543.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.544.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.545.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.714.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.718.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.734.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.735.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.774.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.775.llvm.11863337995874546624" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.f0bd568fd38a33d48aa6a82c65029e9c.776.llvm.11863337995874546624" ' unrecognized
           Warning: corrupt .drectve at end of def file
           Warning: .drectve `-exclude-symbols:"_ZN4core3ptr52drop_in_place$LT$gimli..read..abbrev..Attributes$GT$17h514b2271fbb65d18E.llvm.16518632798636311580" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core9panicking13assert_failed17he2e3008683c980caE.llvm.16518632798636311580" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.aad188865ab0d35b5d2332aba2d157dc.17.llvm.16518632798636311580" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.aad188865ab0d35b5d2332aba2d157dc.70.llvm.16518632798636311580" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.aad188865ab0d35b5d2332aba2d157dc.76.llvm.16518632798636311580" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.aad188865ab0d35b5d2332aba2d157dc.77.llvm.16518632798636311580" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.aad188865ab0d35b5d2332aba2d157dc.78.llvm.16518632798636311580" ' unrecognized
           Warning: corrupt .drectve at end of def file
           Warning: .drectve `-exclude-symbols:"anon.8cc963e752ca42a7170d7cbf41c85434.18.llvm.3497126311449104390" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.8cc963e752ca42a7170d7cbf41c85434.20.llvm.3497126311449104390" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.8cc963e752ca42a7170d7cbf41c85434.21.llvm.3497126311449104390" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.8cc963e752ca42a7170d7cbf41c85434.52.llvm.3497126311449104390" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.8cc963e752ca42a7170d7cbf41c85434.53.llvm.3497126311449104390" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.8cc963e752ca42a7170d7cbf41c85434.56.llvm.3497126311449104390" ' unrecognized
           Warning: corrupt .drectve at end of def file
           Warning: .drectve `-exclude-symbols:"_ZN4core3ptr54drop_in_place$LT$panic_unwind..real_imp..Exception$GT$17h32dc8e8274c5dd02E.llvm.2102707570818672813" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN12panic_unwind8real_imp5panic17exception_cleanup17h1152c94d9c8ddd7eE.llvm.2102707570818672813" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.97e4a8a199518c575ceab5ee49f3765e.0.llvm.2102707570818672813" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.97e4a8a199518c575ceab5ee49f3765e.1.llvm.2102707570818672813" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.97e4a8a199518c575ceab5ee49f3765e.2.llvm.2102707570818672813" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.97e4a8a199518c575ceab5ee49f3765e.3.llvm.2102707570818672813" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.97e4a8a199518c575ceab5ee49f3765e.4.llvm.2102707570818672813" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.97e4a8a199518c575ceab5ee49f3765e.5.llvm.2102707570818672813" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.97e4a8a199518c575ceab5ee49f3765e.6.llvm.2102707570818672813" ' unrecognized
           Warning: corrupt .drectve at end of def file
           Warning: .drectve `-exclude-symbols:"_ZN4core3fmt5Write10write_char17h631e258bbc9c093cE.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3fmt5Write9write_fmt17h043bc959be52768cE.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3ops8function2Fn4call17he906011a02b6814bE.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3ops8function5FnMut8call_mut17hbc000abc1cb066eaE.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3ops8function6FnOnce40call_once$u7b$$u7b$vtable.shim$u7d$$u7d$17h6814ecf99eb951e6E.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3ptr100drop_in_place$LT$std..io..Write..write_fmt..Adapter$LT$std..sys..pal..windows..stdio..Stderr$GT$$GT$17h7a93e6af7a6039acE.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3ptr130drop_in_place$LT$core..result..Result$LT$$LP$$RP$$C$alloc..boxed..Box$LT$dyn$u20$core..any..Any$u2b$core..marker..Send$GT$$GT$$GT$17hbadab65e0d841d26E.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3ptr131drop_in_place$LT$alloc..boxed..Box$LT$dyn$u20$core..ops..function..FnOnce$LT$$LP$$RP$$GT$$u2b$Output$u20$$u3d$$u20$$LP$$RP$$GT$$GT$17h421884306f4a7db2E.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3ptr29drop_in_place$LT$$LP$$RP$$GT$17h1ab82d453af6287dE.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3ptr43drop_in_place$LT$std..io..error..Custom$GT$17h3418a43b62b09159E.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3ptr57drop_in_place$LT$std..io..error..repr_bitpacked..Repr$GT$17h38ac991276a572dfE.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3ptr81drop_in_place$LT$core..result..Result$LT$$LP$$RP$$C$std..io..error..Error$GT$$GT$17h10fe90a3d593edfbE.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3ptr9alignment9Alignment13new_unchecked17h7a32d424e0799e60E.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN5alloc4sync16Arc$LT$T$C$A$GT$9drop_slow17h1bbbcf11faae9f6fE.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN5alloc4sync16Arc$LT$T$C$A$GT$9drop_slow17hff1acb732de8b8a7E.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN72_$LT$alloc..boxed..Box$LT$T$C$A$GT$$u20$as$u20$core..ops..drop..Drop$GT$4drop17h16af1b1c0e5ce6edE.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std2io5error14repr_bitpacked4Repr6new_os17h7f8cc6b3d33b68b1E.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std2io5error14repr_bitpacked11decode_repr17h4cffc2593d28bfaaE.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN80_$LT$std..io..Write..write_fmt..Adapter$LT$T$GT$$u20$as$u20$core..fmt..Write$GT$9write_str17haba5e0ff1c35369bE.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std10sys_common9backtrace26__rust_end_short_backtrace17ha76dcf81c1d09dadE.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std5alloc24default_alloc_error_hook17h801efb0a596690efE.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std3sys3pal7windows5stdio5write17hd988b46265f77bc4E.llvm.16513687735375067440" ' unrecognized
make: *** [Makefile:82: ci-mingw-bootstrap] Error 1
make: *** [Makefile:82: ci-mingw-bootstrap] Error 1
           Warning: .drectve `-exclude-symbols:"_ZN3std3sys3pal7windows7to_u16s5inner17h34a9be743fbd2997E.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std9panicking11panic_count17LOCAL_PANIC_COUNT7__getit17h99b64173983fd1acE.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std10sys_common11thread_info11THREAD_INFO7__getit17h96ae3e0b48bc9ff3E.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std2io5stdio14OUTPUT_CAPTURE7__getit17h326c45e8ef8c36d0E.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"str.0.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.2.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"str.1.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.44.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.45.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.46.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.58.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.59.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.60.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.62.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.63.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.64.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.65.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.117.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.179.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.409.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.456.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.457.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.458.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.459.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.601.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.603.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.604.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.605.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.609.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.610.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.611.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.612.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std2io5stdio19OUTPUT_CAPTURE_USED17h6d00a41ec52ded38E.0.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.692.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.693.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.694.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.722.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.723.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.908.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.909.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.910.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std10sys_common6thread9min_stack3MIN17he664a6cb9c0a6b7dE.0.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.911.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.912.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std5alloc4HOOK17h2e7569f6b355dc5fE.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.960.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.961.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.962.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.963.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.964.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.965.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.966.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.967.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.968.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.969.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.981.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.982.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.1104.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.1105.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.1106.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.1265.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.1266.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.1267.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.1268.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.1286.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.1287.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.1288.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.c80b96ecf3a275905b376cc826234603.1289.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std3sys3pal7windows14thread_parking18keyed_event_handle6HANDLE17h5ae4d4de1b6de2a5E.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std3sys3pal7windows1c20SetThreadDescription3PTR17h2c8200ee9484f246E.0.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std3sys3pal7windows1c19WakeByAddressSingle3PTR17heb15d3a5a9d7dda3E.0.llvm.16513687735375067440" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN3std3sys3pal7windows1c18NtCreateKeyedEvent3PTR17h4edca4106c7dac90E.0.llvm.16513687735375067440" ' unrecognized
           Warning: corrupt .drectve at end of def file
           Warning: corrupt .drectve at end of def file
           C:/a/rust/rust/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: C:\a\rust\rust\build\x86_64-pc-windows-gnu\test\ui\extern\issue-64655-allow-unwind-when-calling-panic-directly.thin\a.object-b0211d7f110be572.object.d5261ef1aafbe3e7-cgu.0.rcgu.o.rcgu.o:object.d5261ef1aaf:(.text+0x49): undefined reference to `__imp__ZN6memchr4arch6x86_646memchr10memchr_raw2FN17ha69325e18976b9e0E'
           C:/a/rust/rust/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: C:\a\rust\rust\build\x86_64-pc-windows-gnu\test\ui\extern\issue-64655-allow-unwind-when-calling-panic-directly.thin\a.object-b0211d7f110be572.object.d5261ef1aafbe3e7-cgu.0.rcgu.o.rcgu.o:object.d5261ef1aaf:(.text+0x44f): undefined reference to `__imp__ZN6memchr4arch6x86_646memchr10memchr_raw2FN17ha69325e18976b9e0E'
           C:/a/rust/rust/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: C:\a\rust\rust\build\x86_64-pc-windows-gnu\test\ui\extern\issue-64655-allow-unwind-when-calling-panic-directly.thin\a.std-9330eb6bebc3439a.std.e6e02910d812e59a-cgu.0.rcgu.o.rcgu.o:std.e6e02910d812e5:(.text+0x2c83e): undefined reference to `__imp__ZN6memchr4arch6x86_646memchr10memchr_raw2FN17ha69325e18976b9e0E'
           C:/a/rust/rust/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: C:\a\rust\rust\build\x86_64-pc-windows-gnu\test\ui\extern\issue-64655-allow-unwind-when-calling-panic-directly.thin\a.std-9330eb6bebc3439a.std.e6e02910d812e59a-cgu.0.rcgu.o.rcgu.o:std.e6e02910d812e5:(.text+0x2c86d): undefined reference to `__imp__ZN6memchr4arch6x86_646memchr10memchr_raw2FN17ha69325e18976b9e0E'
           C:/a/rust/rust/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: C:\a\rust\rust\build\x86_64-pc-windows-gnu\test\ui\extern\issue-64655-allow-unwind-when-calling-panic-directly.thin\a.std-9330eb6bebc3439a.std.e6e02910d812e59a-cgu.0.rcgu.o.rcgu.o:std.e6e02910d812e5:(.text+0x2c8f4): undefined reference to `__imp__ZN6memchr4arch6x86_646memchr10memchr_raw2FN17ha69325e18976b9e0E'
           C:/a/rust/rust/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: C:\a\rust\rust\build\x86_64-pc-windows-gnu\test\ui\extern\issue-64655-allow-unwind-when-calling-panic-directly.thin\a.std-9330eb6bebc3439a.std.e6e02910d812e59a-cgu.0.rcgu.o.rcgu.o:std.e6e02910d812e5:(.text+0x2caa7): more undefined references to `__imp__ZN6memchr4arch6x86_646memchr10memchr_raw2FN17ha69325e18976b9e0E' follow
           collect2.exe: error: ld returned 1 exit status
           
   = note: some `extern` functions couldn't be found; some native libraries may need to be installed or have their path specified
   = note: use the `-l` flag to specify native libraries to link
   = note: use the `cargo:rustc-link-lib` directive to specify the native libraries to link with Cargo (see https://doc.rust-lang.org/cargo/reference/build-scripts.html#rustc-link-lib)
error: aborting due to 1 previous error
------------------------------------------



---- [ui] tests\ui\extern\issue-64655-extern-rust-must-allow-unwind.rs#thin1 stdout ----

error in revision `thin1`: test compilation failed although it shouldn't!
status: exit code: 1
command: PATH="C:\a\rust\rust\build\x86_64-pc-windows-gnu\stage2\bin;C:\a\rust\rust\build\x86_64-pc-windows-gnu\stage0-bootstrap-tools\x86_64-pc-windows-gnu\release\deps;C:\a\rust\rust\build\x86_64-pc-windows-gnu\stage0\bin;C:\a\rust\rust\ninja;C:\a\rust\rust\mingw64\bin;C:\hostedtoolcache\windows\Python\3.12.1\x64\Scripts;C:\hostedtoolcache\windows\Python\3.12.1\x64;C:\msys64\usr\bin;C:\a\rust\rust\sccache;C:\Program Files\MongoDB\Server\5.0\bin;C:\aliyun-cli;C:\vcpkg;C:\cf-cli;C:\Program Files (x86)\NSIS;C:\tools\zstd;C:\Program Files\Mercurial;C:\hostedtoolcache\windows\stack\2.13.1\x64;C:\cabal\bin;C:\ghcup\bin;C:\mingw64\bin;C:\Program Files\dotnet;C:\Program Files\MySQL\MySQL Server 5.7\bin;C:\Program Files\R\R-4.3.2\bin\x64;C:\SeleniumWebDrivers\GeckoDriver;C:\SeleniumWebDrivers\EdgeDriver;C:\SeleniumWebDrivers\ChromeDriver;C:\Program Files (x86)\sbt\bin;C:\Program Files (x86)\GitHub CLI;C:\Program Files\Git\bin;C:\Program Files (x86)\pipx_bin;C:\npm\prefix;C:\hostedtoolcache\windows\go\1.20.13\x64\bin;C:\hostedtoolcache\windows\Python\3.7.9\x64\Scripts;C:\hostedtoolcache\windows\Python\3.7.9\x64;C:\hostedtoolcache\windows\Ruby\2.5.9\x64\bin;C:\Program Files\OpenSSL\bin;C:\tools\kotlinc\bin;C:\hostedtoolcache\windows\Java_Temurin-Hotspot_jdk\8.0.392-8\x64\bin;C:\Program Files\ImageMagick-7.1.1-Q16-HDRI;C:\Program Files\Microsoft SDKs\Azure\CLI2\wbin;C:\ProgramData\kind;C:\Program Files\Eclipse Foundation\jdk-8.0.302.8-hotspot\bin;C:\ProgramData\Chocolatey\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0;C:\Windows\System32\OpenSSH;C:\Program Files\PowerShell\7;C:\Program Files\Microsoft\Web Platform Installer;C:\Program Files\Microsoft SQL Server\130\Tools\Binn;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\170\Tools\Binn;C:\Program Files (x86)\Windows Kits\10\Windows Performance Toolkit;C:\Program Files (x86)\Microsoft SQL Server\110\DTS\Binn;C:\Program Files (x86)\Microsoft SQL Server\120\DTS\Binn;C:\Program Files (x86)\Microsoft SQL Server\130\DTS\Binn;C:\Program Files (x86)\Microsoft SQL Server\140\DTS\Binn;C:\Program Files (x86)\Microsoft SQL Server\150\DTS\Binn;C:\Program Files (x86)\Microsoft SQL Server\160\DTS\Binn;C:\Strawberry\c\bin;C:\Strawberry\perl\site\bin;C:\Strawberry\perl\bin;C:\ProgramData\chocolatey\lib\pulumi\tools\Pulumi\bin;C:\Program Files\TortoiseSVN\bin;C:\Program Files\CMake\bin;C:\ProgramData\chocolatey\lib\maven\apache-maven-3.8.7\bin;C:\Program Files\Microsoft Service Fabric\bin\Fabric\Fabric.Code;C:\Program Files\Microsoft SDKs\Service Fabric\Tools\ServiceFabricLocalClusterManager;C:\Program Files\nodejs;C:\Program Files\Git\cmd;C:\Program Files\Git\mingw64\bin;C:\Program Files\Git\usr\bin;C:\Program Files\GitHub CLI;C:\tools\php;C:\Program Files (x86)\sbt\bin;C:\Program Files\Amazon\AWSCLIV2;C:\Program Files\Amazon\SessionManagerPlugin\bin;C:\Program Files\Amazon\AWSSAMCLI\bin;C:\Program Files (x86)\Google\Cloud SDK\google-cloud-sdk\bin;C:\Program Files (x86)\Microsoft BizTalk Server;C:\Program Files\LLVM\bin;C:\Users\runneradmin\.dotnet\tools;C:\Users\runneradmin\.cargo\bin;C:\Users\runneradmin\AppData\Local\Microsoft\WindowsApps" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\stage2\\bin\\rustc.exe" "C:\\a\\rust\\rust\\tests\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=C:\\Users\\runneradmin\\.cargo" "--sysroot" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\stage2" "--target=x86_64-pc-windows-gnu" "--cfg" "thin1" "--error-format" "json" "--json" "future-incompat" "-Ccodegen-units=1" "-Zui-testing" "-Zdeduplicate-diagnostics=no" "-Zwrite-long-types-to-disk=no" "-Cstrip=debuginfo" "-o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin1\\a.exe" "-A" "internal_features" "-Crpath" "-Cdebuginfo=0" "-Lnative=C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\native\\rust-test-helpers" "-L" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin1\\auxiliary" "-C" "opt-level=1" "-C" "lto=thin"
--- stderr -------------------------------
--- stderr -------------------------------
error: linking with `x86_64-w64-mingw32-gcc` failed: exit code: 1
   |
   = note: "x86_64-w64-mingw32-gcc" "-fno-use-linker-plugin" "-Wl,--dynamicbase" "-Wl,--disable-auto-image-base" "-m64" "-Wl,--high-entropy-va" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\stage2\\lib\\rustlib\\x86_64-pc-windows-gnu\\lib\\rsbegin.o" "C:\\Users\\RUNNER~1\\AppData\\Local\\Temp\\rustcc6yrnZ\\symbols.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin1\\a.addr2line-0feb35ddf8fe4007.addr2line.84456fe4de9ec2be-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin1\\a.adler-65fd96764d350467.adler.30575fc27df57a2d-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin1\\a.alloc-671b2aa317f409e1.alloc.1f497edeb05737b0-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin1\\a.cfg_if-733aafd18f9c2e1f.cfg_if.964039d0ecc99d6f-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin1\\a.core-36315962d2350d13.core.404611bfa6ad60c6-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin1\\a.gimli-44704f3584b2a287.gimli.268ad99b86010646-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin1\\a.hashbrown-63a4b27f0f62ea34.hashbrown.f7c9e684435e10e0-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin1\\a.issue_64655_extern_rust_must_allow_unwind.56e668df17fe0d16-cgu.0.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin1\\a.janexv6nbuju7j4.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin1\\a.libc-bc580ebd3d108d02.libc.ebdcb4beea75b7fd-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin1\\a.memchr-1b33005301bfae8b.memchr.ec454a5bca71e7b2-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin1\\a.miniz_oxide-03675b04565cead2.miniz_oxide.802ad99a5405f4a5-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin1\\a.object-b0211d7f110be572.object.d5261ef1aafbe3e7-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin1\\a.panic_unwind-2bd6578291ed7e71.panic_unwind.e05110faf95f2043-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin1\\a.rustc_demangle-7a60d81ab35cf473.rustc_demangle.8f207185a84b6555-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin1\\a.rustc_std_workspace_alloc-16632ae935f7cd5d.rustc_std_workspace_alloc.d5366ea7649e5ece-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin1\\a.rustc_std_workspace_core-731faf526b84c3fa.rustc_std_workspace_core.b9286444359cf56d-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin1\\a.std-9330eb6bebc3439a.std.e6e02910d812e59a-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin1\\a.std_detect-ca8cebc464eef20f.std_detect.d266b33de4d5031f-cgu.0.rcgu.o.rcgu.o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin1\\a.unwind-99b5d815eb4b36e0.unwind.f10177f01ff0eb3e-cgu.0.rcgu.o.rcgu.o" "-L" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\native\\rust-test-helpers" "-L" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin1\\auxiliary" "-L" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\stage2\\lib\\rustlib\\x86_64-pc-windows-gnu\\lib" "-Wl,-Bstatic" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\stage2\\lib\\rustlib\\x86_64-pc-windows-gnu\\lib\\libcompiler_builtins-09ae3089b1762d56.rlib" "-Wl,-Bdynamic" "-lkernel32" "-ladvapi32" "-lbcrypt" "-lkernel32" "-lntdll" "-luserenv" "-lws2_32" "-lkernel32" "-lws2_32" "-lkernel32" "-lntdll" "-lkernel32" "-lgcc_eh" "-l:libpthread.a" "-lmsvcrt" "-lmingwex" "-lmingw32" "-lgcc" "-lmsvcrt" "-luser32" "-lkernel32" "-Wl,--nxcompat" "-L" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\stage2\\lib\\rustlib\\x86_64-pc-windows-gnu\\lib" "-o" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\test\\ui\\extern\\issue-64655-extern-rust-must-allow-unwind.thin1\\a.exe" "-Wl,--gc-sections" "-no-pie" "-Wl,--strip-debug" "-nodefaultlibs" "C:\\a\\rust\\rust\\build\\x86_64-pc-windows-gnu\\stage2\\lib\\rustlib\\x86_64-pc-windows-gnu\\lib\\rsend.o"
   = note: Warning: .drectve `-exclude-symbols:"_ZN4core3fmt5Write9write_fmt17ha2140268a76f6c60E.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3ptr37drop_in_place$LT$core..fmt..Error$GT$17h9e9aa118f8ba46ceE.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN4core3ptr42drop_in_place$LT$alloc..string..String$GT$17h2d922bdf425d1a96E.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN53_$LT$core..fmt..Error$u20$as$u20$core..fmt..Debug$GT$3fmt17hce89244e36204b74E.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN69_$LT$core..alloc..layout..LayoutError$u20$as$u20$core..fmt..Debug$GT$3fmt17h710a50c4a67a96f0E.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN5alloc7raw_vec19RawVec$LT$T$C$A$GT$7reserve21do_reserve_and_handle17h3657bc5ffdf6fa77E.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN5alloc6string6String4push17h1b25908b65c65b0cE.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN58_$LT$alloc..string..String$u20$as$u20$core..fmt..Write$GT$9write_str17hd379a9a08ad05cc4E.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN58_$LT$alloc..string..String$u20$as$u20$core..fmt..Write$GT$10write_char17h49f05ab3fba45ca7E.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"_ZN132_$LT$alloc..vec..Vec$LT$T$C$A$GT$$u20$as$u20$alloc..vec..spec_extend..SpecExtend$LT$$RF$T$C$core..slice..iter..Iter$LT$T$GT$$GT$$GT$11spec_extend17h5e159b78adcb9d06E.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.2.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"str.0.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.5.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"str.1.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.10.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.11.llvm.477883611118121142" ' unrecognized
           Warning: .drectve `-exclude-symbols:"anon.10f9900e6665bdd1123fd3a36f93f77a.12.llvm.477883611118121142" ' unrecognized

@bors
Copy link
Contributor

bors commented Jan 23, 2024

💔 Test failed - checks-actions

@bors bors added S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. and removed S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. labels Jan 23, 2024
@fmease
Copy link
Member Author

fmease commented Jan 23, 2024

Leaving this open for now until I figure out which PR caused the failure, it's kinda hard to tell. Rollup #120249 also failed because of this :/

@fmease
Copy link
Member Author

fmease commented Jan 23, 2024

#120177 (comment)

@fmease fmease closed this Jan 23, 2024
@fmease fmease deleted the rollup-nbm2e8h branch January 23, 2024 21:27
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-meta Area: Issues about the rust-lang/rust repository. A-testsuite Area: The testsuite used to check the correctness of rustc O-unix Operating system: Unix-like rollup A PR which is a rollup S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. T-bootstrap Relevant to the bootstrap subteam: Rust's build system (x.py and src/bootstrap) T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. T-libs Relevant to the library team, which will review and decide on the PR/issue. WG-trait-system-refactor The Rustc Trait System Refactor Initiative
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet