Rollup merge of #130047 - ChrisDenton:win-dbghelp, r=wesleywiser

Win: Add dbghelp to the list of import libraries

This is used by the backtrace crate. But we use a submodule to include backtrace in std (rather than being a real crate) so we need to add the dependency here.
This commit is contained in:
Matthias Krüger 2024-09-07 23:30:15 +02:00 committed by GitHub
commit 0dc9f1ac90
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -38,4 +38,5 @@ pub macro link {
#[link(name = "ntdll")]
#[link(name = "userenv")]
#[link(name = "ws2_32")]
#[link(name = "dbghelp")] // required for backtrace-rs symbolization
extern "C" {}