Skip to content

Commit

Permalink
mk: Re-add libgcc_s_seh-1.dll to windows dist
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
alexcrichton committed Oct 27, 2015
1 parent eab5ad5 commit 98dcde1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/etc/make-win-dist.py
Expand Up @@ -50,6 +50,8 @@ def make_win_dist(rust_root, gcc_root, target_triple):
rustc_dlls = ["libstdc++-6.dll"]
if target_triple.startswith("i686-"):
rustc_dlls.append("libgcc_s_dw2-1.dll")
else:
rustc_dlls.append("libgcc_s_seh-1.dll")

target_libs = [ # MinGW libs
"crtbegin.o",
Expand Down

0 comments on commit 98dcde1

Please sign in to comment.