diff options
author | Neil Fortner <nfortne2@hdfgroup.org> | 2013-09-19 18:57:41 (GMT) |
---|---|---|
committer | Neil Fortner <nfortne2@hdfgroup.org> | 2013-09-19 18:57:41 (GMT) |
commit | be3a33155025d6ef2d57533b60b96c888ab314a6 (patch) | |
tree | 2becf1264da71c35b6942b5858704f85cd8f189d /release_docs | |
parent | 0653325f0d4a92164842bb30b797f130e44cbc68 (diff) | |
download | hdf5-be3a33155025d6ef2d57533b60b96c888ab314a6.zip hdf5-be3a33155025d6ef2d57533b60b96c888ab314a6.tar.gz hdf5-be3a33155025d6ef2d57533b60b96c888ab314a6.tar.bz2 |
[svn-r24171] Purpose: Fix problem with gcc 4.8
Description:
With optimization enabled, gcc 4.8 inserts garbage into the padding bytes of
floating point types when assigning from a literal constant. This caused
problems when H5detect.c scanned the bits in floating point types to determine
their properties.
Modified H5detect.c to scan for padding before further analyzing the type, and
to ignore all information in the padding areas. Also removed code that
temporarily disabled optimization.
Tested: jam, koala, ostrich, platypus (h5committest)
Diffstat (limited to 'release_docs')
-rw-r--r-- | release_docs/RELEASE.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index 92a6ce4..cd694a6 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -677,6 +677,9 @@ Bug Fixes since HDF5-1.8.0 release Configuration ------------- + - Modified H5detect.c to scan floating point types for padding bits before + analyzing the type further. This should fix problems with gcc 4.8 + (NAF - 2013/09/19 - HDFFV-8523/HDFFV-8500) - Fixed Makefile issue in which "-Wl," was not properly specified prior to -rpath when building parallel fortran libraries with an Intel compiler. (MAM - 2012/03/26) |