From 98dcde183da298e33de21b71b732728e480b92f8 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Tue, 27 Oct 2015 09:40:11 -0700 Subject: [PATCH] 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. --- src/etc/make-win-dist.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/etc/make-win-dist.py b/src/etc/make-win-dist.py index d484316b4d9..1c289e71188 100644 --- a/src/etc/make-win-dist.py +++ b/src/etc/make-win-dist.py @@ -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",