summaryrefslogtreecommitdiffstats
path: root/config/intel-cxxflags
diff options
context:
space:
mode:
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
#################