Skip to content

Commit 65623db

Browse files
committed
Auto merge of #29403 - alexcrichton:fix-windows-again-zomg, r=brson
Although the compiler itself does not depend on this DLL the `libstdc++-6.dll` that we're shipping does, so we still need to include it.
2 parents e3f6a56 + 98dcde1 commit 65623db

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/etc/make-win-dist.py

+2
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ def make_win_dist(rust_root, gcc_root, target_triple):
5050
rustc_dlls = ["libstdc++-6.dll"]
5151
if target_triple.startswith("i686-"):
5252
rustc_dlls.append("libgcc_s_dw2-1.dll")
53+
else:
54+
rustc_dlls.append("libgcc_s_seh-1.dll")
5355

5456
target_libs = [ # MinGW libs
5557
"crtbegin.o",

0 commit comments

Comments
 (0)