summaryrefslogtreecommitdiffstats
path: root/release_docs
diff options
context:
space:
mode:
authorVailin Choi <vchoi@hdfgroup.org>2015-03-02 03:34:28 (GMT)
committerVailin Choi <vchoi@hdfgroup.org>2015-03-02 03:34:28 (GMT)
commitb53d5c485c94db8083bc36e5bf6cca3aa017a103 (patch)
tree99ce843964fccefc8684dac2cd35ac86d762c8f3 /release_docs
parentf8f7c0dfaaf33ae0d69fd077a68bcb3239c4b9ec (diff)
downloadhdf5-b53d5c485c94db8083bc36e5bf6cca3aa017a103.zip
hdf5-b53d5c485c94db8083bc36e5bf6cca3aa017a103.tar.gz
hdf5-b53d5c485c94db8083bc36e5bf6cca3aa017a103.tar.bz2
[svn-r26334] Bring revision #25818 - #25870 from trunk to revise_chunks.
h5committested.
Diffstat (limited to 'release_docs')
-rw-r--r--release_docs/INSTALL_parallel17
-rw-r--r--release_docs/RELEASE.txt10
2 files changed, 26 insertions, 1 deletions
diff --git a/release_docs/INSTALL_parallel b/release_docs/INSTALL_parallel
index e5be615..28068f1 100644
--- a/release_docs/INSTALL_parallel
+++ b/release_docs/INSTALL_parallel
@@ -235,6 +235,7 @@ $ make install
2.5.2 Hopper known issues
------------------------------
+Issue 1:
Sometimes when building the library with make, you might get this problem:
LD_LIBRARY_PATH="$LD_LIBRARY_PATH`echo | \
@@ -253,6 +254,22 @@ If that happens, you are probable running with make -j <x>. In that
case, you need to cleanup everything and start again as detailed above
but use serial make (do not use -j <x>).
+Issue 2:
+* When building using the Cray compilers on Cray machines, HDF5
+ configure mistakenly thinks the compiler is an intel compiler and
+ sets the -std=c99 flag which breaks configure on Cray. To build HDF5
+ properly on a Cray machine, please consult with the instructions in
+ INSTALL_parallel for building on Hopper.
+ (MSC - 2013/04/26 - HDFFV-8429)
+
+Issue 3:
+* On hopper, the build failed when RUNSERIAL and RUNPARALLEL are set
+ to aprun -np X, because the H5lib_settings.c file was not generated
+ properly. Not setting those environment variables works, because
+ configure was able to automatically detect that it's a Cray system
+ and used the proper launch commands when necessary.
+ (MSC - 2012/04/18)
+
3. Detail explanation
---------------------
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt
index 44943ce..c428136 100644
--- a/release_docs/RELEASE.txt
+++ b/release_docs/RELEASE.txt
@@ -1,4 +1,4 @@
-HDF5 version 1.9.203-swmr0 currently under development
+HDF5 version 1.9.206-swmr0 currently under development
INTRODUCTION
@@ -430,6 +430,14 @@ Bug Fixes since HDF5-1.8.0 release
Library
-------
+ - Incorrect usage of list in CMake COMPILE_DEFINITIONS set_property
+
+ The CMake command, set_property with COMPILE_DEFINITIONS property
+ needs a quoted semi-colon separated list of values. CMake will
+ transform the list to a series of -D{value} for the compile.
+
+ (ADB - 2014/12/09, HDFV-9041)
+
- H5Z.c: H5Zfilter_avail(H5Z_filter_t id)
Added else block if the call to the internal H5Z_filter_avail(id) does not
fail and returns FALSE. This block calls the H5PL_load(H5PL_TYPE_FILTER, (int)id)