diff options
author | MuQun Yang <ymuqun@hdfgroup.org> | 2007-08-02 16:11:33 (GMT) |
---|---|---|
committer | MuQun Yang <ymuqun@hdfgroup.org> | 2007-08-02 16:11:33 (GMT) |
commit | 0ea6b2479fa8ec8fc7aeaa3584eb9b3eef689bcc (patch) | |
tree | 7c23870b2a105e060348da2a3ea6f2eda9d9e8ad | |
parent | 4406d2fd7f71b236d254615d645ae7341a344ec8 (diff) | |
download | hdf5-0ea6b2479fa8ec8fc7aeaa3584eb9b3eef689bcc.zip hdf5-0ea6b2479fa8ec8fc7aeaa3584eb9b3eef689bcc.tar.gz hdf5-0ea6b2479fa8ec8fc7aeaa3584eb9b3eef689bcc.tar.bz2 |
[svn-r14033] Check in the known problem when testing HDF5 shared library on IRIX64 6.5.
-rw-r--r-- | release_docs/RELEASE.txt | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt index 9506cf3..c6f03b8 100644 --- a/release_docs/RELEASE.txt +++ b/release_docs/RELEASE.txt @@ -398,6 +398,30 @@ Footnotes: (1) Using mpich 1.2.6 Known Problems ============== +* On IRIX64 6.5(UCAR SGI mop1), when testing HDF5 tools with HDF5 shared + library, especially for h5repacktst and h52gifgentst; The following (or + similar error message may appear: + "523648:lt-h5repacktst: rld: Fatal Error: Cannot Successfully map soname + 'libh5test.so.1' under any of the filenames .......(bunch of directories) + " + And the testing will fail. + We believe this is a libtool problem. One way to get rid of this is to + add the paths of libh5test.so.1 and libh5.so.1 to the shared library path. + + For 32-bit: + you may do this, under csh, + setenv LD_LIBRARYN32_PATH .......(existing pathes):[full path of HDF5 + directory/test/.libs]:[full path of HDF5 directory/src/.libs] + + For 64-bit: + setenv LD_LIBRARY64_PATH ......(existing pathes):[full path of HDF5 + directory/test/.libs]:[full path of HDF5 directory/src/.libs] + + NOTE: This problem ONLY affects the testing of HDF5 library when you build + from source. It won't affect any applications who would like to link with HDF5 + shared library since the shared library path needs to be set anyway. + + KY - 2007/8/2 * QSC (an HP alpha-based OSF1 cluster) failed the testpar/testphdf5 sub-test "calloc". All other tests passed. This indicates dataset using chunked storage created by serial HDF5 may not work properly with parallel HDF5. |