summaryrefslogtreecommitdiffstats
path: root/config/gnu-fflags
diff options
context:
space:
mode:
authorLarry Knox <lrknox@hdfgroup.org>2020-05-19 02:59:49 (GMT)
committerLarry Knox <lrknox@hdfgroup.org>2020-05-19 02:59:49 (GMT)
commit8797ae3f3ee2d026f7ff2085f285f0cbbb3027af (patch)
treefdd61c5aeeaf2ba4cf440177ef6d34f46d19741c /config/gnu-fflags
parent820363aa6d4e1dd1705237ee16cbf19f7649a4a0 (diff)
parentfcd87d2569ca4d8396c7db4eddb46cab04010abf (diff)
downloadhdf5-8797ae3f3ee2d026f7ff2085f285f0cbbb3027af.zip
hdf5-8797ae3f3ee2d026f7ff2085f285f0cbbb3027af.tar.gz
hdf5-8797ae3f3ee2d026f7ff2085f285f0cbbb3027af.tar.bz2
Merge pull request #2592 in HDFFV/hdf5 from ~LRKNOX/hdf5_lrk:develop to develop
* commit 'fcd87d2569ca4d8396c7db4eddb46cab04010abf': Revise gnu-*flags and cmake/HDF*CompilerFlags.cmake files to add warning flags for GCC compilers version 4.8 and above. Removed files from gnu-warnings that only apply to versions < 4.8. Consolidated warnings from versions < 4.8 that apply to versions >= 4.8 into the 4.8 warnings files.
Diffstat (limited to 'config/gnu-fflags')
-rw-r--r--config/gnu-fflags19
1 files changed, 0 insertions, 19 deletions
diff --git a/config/gnu-fflags b/config/gnu-fflags
index eb3519c..105a990 100644
--- a/config/gnu-fflags
+++ b/config/gnu-fflags
@@ -145,25 +145,6 @@ if test "X-gfortran" = "X-$f9x_vendor"; then
# Version-specific warnings #
#############################
- # gfortran 4.3 (nothing new)
-
- # gfortran >= 4.4
- if test $f9x_vers_major -ge 5 -o $f9x_vers_major -eq 4 -a $f9x_vers_minor -ge 4; then
- H5_FCFLAGS="$H5_FCFLAGS $(load_gnu_arguments gfort-4.4)"
- fi
-
- # gfortran >= 4.5
- if test $f9x_vers_major -ge 5 -o $f9x_vers_major -eq 4 -a $f9x_vers_minor -ge 5; then
- H5_FCFLAGS="$H5_FCFLAGS $(load_gnu_arguments gfort-4.5)"
- fi
-
- # gfortran 4.6 (nothing new)
-
- # gfortran >= 4.7
- if test $f9x_vers_major -ge 5 -o $f9x_vers_major -eq 4 -a $f9x_vers_minor -ge 7; then
- H5_FCFLAGS="$H5_FCFLAGS $(load_gnu_arguments gfort-4.7)"
- fi
-
# gfortran >= 4.8
if test $f9x_vers_major -ge 5 -o $f9x_vers_major -eq 4 -a $f9x_vers_minor -ge 8; then
H5_FCFLAGS="$H5_FCFLAGS $(load_gnu_arguments gfort-4.8)"