Skip to content

Commit 98dcde1

Browse files
committed
mk: Re-add libgcc_s_seh-1.dll to windows dist
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.
1 parent eab5ad5 commit 98dcde1

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)