From 38abb277b58964ec6128890065847fad034ec4ad Mon Sep 17 00:00:00 2001 From: "Yichun Zhang (agentzh)" Date: Thu, 5 Nov 2015 19:17:02 +0800 Subject: [PATCH] package-win32.sh: ensure that we bundle the libgcc_s_dw2-1.dll file from MinGW. thanks Anton Heryanto for the report. --- util/package-win32.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/util/package-win32.sh b/util/package-win32.sh index 44c3360..2f930cb 100755 --- a/util/package-win32.sh +++ b/util/package-win32.sh @@ -8,6 +8,7 @@ if [ -d $name ]; then fi mkdir $name || exit 1 cp -r resty nginx.exe luajit.exe lua51.dll lua include lualib html conf logs $name/ || exit 1 +cp /c/MinGW/bin/libgcc_s_dw2-1.dll $name/ || exit 1 cd $name || exit 1 PATH=/c/Strawberry/perl/bin:$PATH cmd /c 'pl2bat.bat resty' || exit 1 cp ../README-win32.txt README.txt