Skip to content
This repository was archived by the owner on Dec 12, 2024. It is now read-only.

Commit af33a8b

Browse files
committed
bugfix: z-dev-x86_64-w64_seh_posix_4.9.2-static use the wrong compiler
1 parent 5e48464 commit af33a8b

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

AppVeyorBuild.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,16 +167,19 @@ function process() {
167167
var npackdcl = "ncl.exe";
168168

169169
var mingwVersion = "4.9.2";
170-
var compilerPackage = "mingw-w64-i686-sjlj-posix";
170+
var compilerPackage;
171171
var qtVersion = "5.5";
172172
if (package_ === "quazip-dev-i686-w64_sjlj_posix_4.9.2-qt_5.5-static") {
173+
compilerPackage = "mingw-w64-i686-sjlj-posix";
173174
source = "net.sourceforge.quazip.QuaZIPSource";
174175
qtVersion = "5.5";
175176
} else if (package_ === "quazip-dev-i686-w64_sjlj_posix_7.1-qt_5.5-static") {
177+
compilerPackage = "mingw-w64-i686-sjlj-posix";
176178
source = "net.sourceforge.quazip.QuaZIPSource";
177179
mingwVersion = "7.1";
178180
qtVersion = "5.5";
179181
} else if (package_ === "quazip-dev-i686-w64_sjlj_posix_7.2-qt_5.9.2-static") {
182+
compilerPackage = "mingw-w64-i686-sjlj-posix";
180183
source = "net.sourceforge.quazip.QuaZIPSource";
181184
mingwVersion = "7.2";
182185
qtVersion = "5.9.2";
@@ -186,15 +189,19 @@ function process() {
186189
if (compareVersions(version, "5.6") >= 0)
187190
mingwVersion = "7.2";
188191
} else if (package_ === "com.nokia.QtDev-i686-w64-Npackd-Release") {
192+
compilerPackage = "mingw-w64-i686-sjlj-posix";
189193
source = "com.nokia.QtSource";
190194
if (compareVersions(version, "5.6") >= 0)
191195
mingwVersion = "7.2";
192196
} else if (package_ === "z-dev-i686-w64_sjlj_posix_4.9.2-static") {
197+
compilerPackage = "mingw-w64-i686-sjlj-posix";
193198
source = "net.zlib.ZLibSource";
194199
} else if (package_ === "z-dev-i686-w64_sjlj_posix_7.2-static") {
200+
compilerPackage = "mingw-w64-i686-sjlj-posix";
195201
source = "net.zlib.ZLibSource";
196202
mingwVersion = "7.2";
197203
} else if (package_ === "z-dev-x86_64-w64_seh_posix_4.9.2-static") {
204+
compilerPackage = "mingw-w64-x86_64-seh-posix";
198205
source = "net.zlib.ZLibSource";
199206
mingwVersion = "4.9.2";
200207
} else {

0 commit comments

Comments
 (0)