remove sign conversion warning for gcc-5 + avx512

which is the version used on travis by default (xenial).
seems a bug in the intrinsic's definition
This commit is contained in:
Yann Collet 2020-11-12 16:46:48 -08:00
parent 0a810b9e3e
commit 8aa549bf9a

View File

@ -19,7 +19,7 @@ matrix:
script:
- make -B test-all
- make clean
- CFLAGS="-Werror" make dispatch
- CFLAGS="-Werror" MOREFLAGS="-Wno-sign-conversion" make dispatch # removing sign conversion warnings due to a bug in gcc-5's definition of some AVX512 intrinsics
- make clean
- CC=g++ CFLAGS="-O1 -mavx512f -Werror" make
- make clean