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.
This commit is contained in:
bors 2015-10-28 19:34:21 +00:00
commit 65623dba0d

View File

@ -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",