Toolchain: Ignore Intel compiler warning #279

This commit is contained in:
Ole Schütt 2022-05-24 00:41:10 +02:00 committed by Ole Schütt
parent fedce27c3a
commit 403de91c25

View file

@ -34,7 +34,7 @@ LD_arch="IF_MPI(${MPIFC}|${FC})"
# we always want good line information and backtraces
if [ "${with_intel}" != "__DONTUSE__" ]; then
BASEFLAGS="-nofor-main -O2 -fopenmp -fp-model precise -funroll-loops -g -qopenmp-simd -traceback -xHost"
BASEFLAGS="-nofor-main -O2 -fopenmp -fp-model precise -funroll-loops -g -qopenmp-simd -traceback -xHost -wd279"
elif [ "${generic}" = "__TRUE__" ]; then
BASEFLAGS="-fno-omit-frame-pointer -fopenmp -g -mtune=generic"
else