diff options
author | Dana Robinson <43805+derobins@users.noreply.github.com> | 2023-01-03 14:18:48 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-03 14:18:48 (GMT) |
commit | 83f81a64222e61c8cc25e48ccefa700631006aab (patch) | |
tree | 0864fdb966ec3062d1e03f0c46aa6bc9037e10f1 /config/gnu-fflags | |
parent | d326f6fae80c090419d0178bb3e799fd50e78df5 (diff) | |
download | hdf5-83f81a64222e61c8cc25e48ccefa700631006aab.zip hdf5-83f81a64222e61c8cc25e48ccefa700631006aab.tar.gz hdf5-83f81a64222e61c8cc25e48ccefa700631006aab.tar.bz2 |
Adds -Warray-temporaries to the developer warnings (#2385)
These generate a LOT of noise that we are not going to address anytime
soon.
Diffstat (limited to 'config/gnu-fflags')
-rw-r--r-- | config/gnu-fflags | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/config/gnu-fflags b/config/gnu-fflags index c43f416..b3385ec 100644 --- a/config/gnu-fflags +++ b/config/gnu-fflags @@ -159,6 +159,8 @@ if test "X-gfortran" = "X-$f9x_vendor"; then # 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)" + DEVELOPER_WARNING_FCFLAGS="$DEVELOPER_WARNING_FCFLAGS $(load_gnu_arguments gfort-developer-4.8)" + NO_DEVELOPER_WARNING_FCFLAGS="$NO_DEVELOPER_WARNING_FCFLAGS $(load_gnu_arguments gfort-no-developer-4.8)" fi # gfortran 4.9 (nothing new) |