summaryrefslogtreecommitdiffstats
path: root/config/intel-cxxflags
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2023-10-19 22:17:20 (GMT)
committerGitHub <noreply@github.com>2023-10-19 22:17:20 (GMT)
commit2bb6619528c1faef3382705f9635f85ad32e6f6d (patch)
tree8d5f6d175381d3d8490517ef42a303426e801aae /config/intel-cxxflags
parent11f3804c48766ac9e1ce9f41ed4c940a3e28c0d4 (diff)
downloadhdf5-2bb6619528c1faef3382705f9635f85ad32e6f6d.zip
hdf5-2bb6619528c1faef3382705f9635f85ad32e6f6d.tar.gz
hdf5-2bb6619528c1faef3382705f9635f85ad32e6f6d.tar.bz2
Develop intel split (#3722)
* Split intel compiler flags into sub-folders * Update Intel options for warnings * Mostly CMake, Autotools needs additional work
Diffstat (limited to 'config/intel-cxxflags')
-rw-r--r--config/intel-cxxflags12
1 files changed, 6 insertions, 6 deletions
diff --git a/config/intel-cxxflags b/config/intel-cxxflags
index 107b087..40a3f0e 100644
--- a/config/intel-cxxflags
+++ b/config/intel-cxxflags
@@ -129,15 +129,15 @@ if test "X-icpc" = "X-$cxx_vendor"; then
# Add various general warning flags in intel-warnings.
# Use the C warnings as CXX warnings are the same
- H5_CXXFLAGS="$H5_CXXFLAGS $(load_intel_arguments general)"
+ H5_CXXFLAGS="$H5_CXXFLAGS $(load_intel_arguments classic/general)"
######################
# Developer warnings #
######################
# Use the C warnings as CXX warnings are the same
- #NO_DEVELOPER_WARNING_CXXFLAGS=$(load_intel_arguments no-developer-general)
- #DEVELOPER_WARNING_CXXFLAGS=$(load_intel_arguments developer-general)
+ #NO_DEVELOPER_WARNING_CXXFLAGS=$(load_intel_arguments classic/no-developer-general)
+ #DEVELOPER_WARNING_CXXFLAGS=$(load_intel_arguments classic/developer-general)
#############################
# Version-specific warnings #
@@ -157,19 +157,19 @@ if test "X-icpc" = "X-$cxx_vendor"; then
# intel >= 15
if test $cxx_vers_major -ge 15; then
# Use the C warnings as CXX warnings are the same
- H5_CXXFLAGS="$H5_CXXFLAGS $(load_intel_arguments 15)"
+ H5_CXXFLAGS="$H5_CXXFLAGS $(load_intel_arguments classic/15)"
fi
# intel >= 18
if test $cxx_vers_major -ge 18; then
# Use the C warnings as CXX warnings are the same
- H5_CXXFLAGS="$H5_CXXFLAGS $(load_intel_arguments 18)"
+ 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 general-19)"
+ H5_CXXFLAGS="$H5_CXXFLAGS $(load_intel_arguments classic/general-19)"
fi
#################