diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2020-01-24 15:57:39 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2020-01-24 15:57:39 (GMT) |
commit | 5b92b4d362546c213f684e515451be116dd8d281 (patch) | |
tree | e5a310c64f9746ff1619a19940a18d279411d8af /config/gnu-flags | |
parent | bf89ea471133c84cc6af1e084da6b474ff04e467 (diff) | |
parent | 590aaff33046df99a4d88ba59e4b461e060b36e4 (diff) | |
download | hdf5-5b92b4d362546c213f684e515451be116dd8d281.zip hdf5-5b92b4d362546c213f684e515451be116dd8d281.tar.gz hdf5-5b92b4d362546c213f684e515451be116dd8d281.tar.bz2 |
Merging in latest from upstream (HDFFV/hdf5:refs/heads/develop)
* commit '590aaff33046df99a4d88ba59e4b461e060b36e4':
Optimized the floating point comparisons a little bit.
Fix for failing h5diff tests involving floating-point compares.
Removed H5_DEC_ENUM
Revert "Revert "Moved -Wunsuffixed-float-constants to the developer warnings.""
Revert "Moved -Wunsuffixed-float-constants to the developer warnings."
Moved -Wunsuffixed-float-constants to the developer warnings.
Fixed a bug in testpar/t_cache.c concerning checking expected vs. actual cache entry reads and writes.
Diffstat (limited to 'config/gnu-flags')
-rw-r--r-- | config/gnu-flags | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/config/gnu-flags b/config/gnu-flags index f23ad68..3ca74c1 100644 --- a/config/gnu-flags +++ b/config/gnu-flags @@ -251,7 +251,9 @@ if test "X-gcc" = "X-$cc_vendor"; then # gcc 4.5 if test $cc_vers_major -ge 5 -o $cc_vers_major -eq 4 -a $cc_vers_minor -ge 5; then - H5_CFLAGS="$H5_CFLAGS -Wstrict-overflow=5 -Wjump-misses-init -Wunsuffixed-float-constants" + H5_CFLAGS="$H5_CFLAGS -Wstrict-overflow=5 -Wjump-misses-init" + DEVELOPER_WARNING_CFLAGS="$DEVELOPER_WARNING_CFLAGS -Wunsuffixed-float-constants" + NO_DEVELOPER_WARNING_CFLAGS="$NO_DEVELOPER_WARNING_CFLAGS -Wno-unsuffixed-float-constants" fi # gcc 4.6 |