fixed make command

on Windows, command line doesn't accept environment variables before the command
This commit is contained in:
Yann Collet 2019-12-03 15:55:50 -08:00
parent 8f6e9c92e6
commit cff3643459

View File

@ -73,7 +73,7 @@ build_script:
if not [%PLATFORM%]==[clang] (
make -B clean test MOREFLAGS=-Werror
) ELSE (
NO_C90_TEST=true make -B clean test CC=clang CXX=clang++ MOREFLAGS="--target=x86_64-w64-mingw32 -Werror -Wno-pass-failed"
make -B clean test CC=clang CXX=clang++ MOREFLAGS="--target=x86_64-w64-mingw32 -Werror -Wno-pass-failed" NO_C90_TEST=true
) &&
make -C tests/bench
)