From d791aef80ea6cfcacd7e17a09fe52f0b89d34202 Mon Sep 17 00:00:00 2001 From: Yann Collet Date: Thu, 31 Aug 2017 15:24:17 -0700 Subject: [PATCH] blind attempt at removing gcc dependency from appveyor's mingw builds, for #815 --- appveyor.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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" -- 2.47.3