summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDana Robinson <43805+derobins@users.noreply.github.com>2024-02-26 20:28:49 (GMT)
committerGitHub <noreply@github.com>2024-02-26 20:28:49 (GMT)
commitf36b2911ab5d2d9c4c0a44fac2f8499ab50d6306 (patch)
tree734feec41fb2bf8fbbe3e6911290fa880c954650
parentb79982a6062da9af83bfc3065c0c230aeebff875 (diff)
downloadhdf5-f36b2911ab5d2d9c4c0a44fac2f8499ab50d6306.zip
hdf5-f36b2911ab5d2d9c4c0a44fac2f8499ab50d6306.tar.gz
hdf5-f36b2911ab5d2d9c4c0a44fac2f8499ab50d6306.tar.bz2
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.
-rw-r--r--config/intel-cxxflags6
-rw-r--r--config/intel-flags6
2 files changed, 0 insertions, 12 deletions
diff --git a/config/intel-cxxflags b/config/intel-cxxflags
index 40a3f0e..8db550d 100644
--- a/config/intel-cxxflags
+++ b/config/intel-cxxflags
@@ -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 #
#################
diff --git a/config/intel-flags b/config/intel-flags
index 134452c..725ba62 100644
--- a/config/intel-flags
+++ b/config/intel-flags
@@ -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 #
#################