Don't try to load general-19 warnings file for icc (#4042)

The Autools Classic Intel compiler configuration attempts to load a file
named `general-19` from the intel-warnings/classic directory, which does
not exist.

This removes the attempted load of the file.
This commit is contained in:
Dana Robinson 2024-02-26 12:28:49 -08:00 committed by GitHub
parent b79982a606
commit f36b2911ab
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 0 additions and 12 deletions

View File

@ -166,12 +166,6 @@ if test "X-icpc" = "X-$cxx_vendor"; then
H5_CXXFLAGS="$H5_CXXFLAGS $(load_intel_arguments classic/18)"
fi
# intel <= 19
if test $cxx_vers_major -le 19; then
# Use the C warnings as CXX warnings are the same
H5_CXXFLAGS="$H5_CXXFLAGS $(load_intel_arguments classic/general-19)"
fi
#################
# Flags are set #
#################

View File

@ -161,12 +161,6 @@ if test "X-icc" = "X-$cc_vendor"; then
H5_CFLAGS="$H5_CFLAGS $(load_intel_arguments classic/18)"
fi
# intel <= 19
# this file has warnings only available before oneapi versions
if test $cc_vers_major -le 19; then
H5_CFLAGS="$H5_CFLAGS $(load_intel_arguments classic/general-19)"
fi
#################
# Flags are set #
#################