From: Yann Collet Date: Thu, 6 May 2021 23:07:44 +0000 (-0700) Subject: switch to clang X-Git-Tag: v1.5.0^2~18^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bd547232bc0aa43591b9eabf51a78ae3cb10fdcf;p=thirdparty%2Fzstd.git switch to clang --- diff --git a/appveyor.yml b/appveyor.yml index 551a7b44e..877f841f1 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -279,8 +279,8 @@ C:\cygwin64\bin\bash --login -c " set -e; cd build/cmake; - CFLAGS='-O1 -Werror' cmake -G 'Unix Makefiles' -DCMAKE_BUILD_TYPE=Debug -DZSTD_BUILD_TESTS:BOOL=ON -DZSTD_FUZZER_FLAGS=-T20s -DZSTD_ZSTREAM_FLAGS=-T20s -DZSTD_FULLBENCH_FLAGS=-i0 .; - make VERBOSE=1 -j4; + CC=clang CFLAGS='-O1 -Werror' cmake -G 'Unix Makefiles' -DCMAKE_BUILD_TYPE=Debug -DZSTD_BUILD_TESTS:BOOL=ON -DZSTD_FUZZER_FLAGS=-T20s -DZSTD_ZSTREAM_FLAGS=-T20s -DZSTD_FULLBENCH_FLAGS=-i0 .; + make VERBOSE=1 -j; ctest -V -L Medium; " )