From: Yann Collet Date: Thu, 31 Aug 2017 22:24:17 +0000 (-0700) Subject: blind attempt at removing gcc dependency X-Git-Tag: fuzz-corpora2~32 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d791aef80ea6cfcacd7e17a09fe52f0b89d34202;p=thirdparty%2Fzstd.git blind attempt at removing gcc dependency from appveyor's mingw builds, for #815 --- diff --git a/appveyor.yml b/appveyor.yml index 1815563e7..99fa834b4 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -9,13 +9,13 @@ - COMPILER: "gcc" HOST: "mingw" PLATFORM: "x64" - SCRIPT: "make allarch && make -C tests test-symbols fullbench-dll fullbench-lib" + SCRIPT: "make allarch MOREFLAGS=-static && make -C tests test-symbols fullbench-dll fullbench-lib" ARTIFACT: "true" BUILD: "true" - COMPILER: "gcc" HOST: "mingw" PLATFORM: "x86" - SCRIPT: "make allarch" + SCRIPT: "make allarch MOREFLAGS=-static" ARTIFACT: "true" BUILD: "true" - COMPILER: "clang"