We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8123eb4 commit b44b50aCopy full SHA for b44b50a
src/bootstrap/dist.rs
@@ -208,6 +208,8 @@ fn make_win_dist(
208
rustc_dlls.push("libgcc_s_seh-1.dll");
209
}
210
211
+ // Libraries necessary to link the windows-gnu toolchains.
212
+ // System libraries will be preferred if they are available (see #67429).
213
let target_libs = [
214
//MinGW libs
215
"libgcc.a",
@@ -221,6 +223,7 @@ fn make_win_dist(
221
223
"libmoldname.a",
222
224
"libpthread.a",
225
//Windows import libs
226
+ //This should contain only the set of libraries necessary to link the standard library.
227
"libadvapi32.a",
228
"libbcrypt.a",
229
"libcomctl32.a",
0 commit comments