summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2002-02-06 21:29:07 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2002-02-06 21:29:07 (GMT)
commitd13a9579f1e93f6f706f6471271658072761c202 (patch)
tree2b86da80cb815362ccd35bec395f7e6cc7232566
parent8d5c4123c982d4d44443891b2abc21ce040fdb24 (diff)
downloadhdf5-d13a9579f1e93f6f706f6471271658072761c202.zip
hdf5-d13a9579f1e93f6f706f6471271658072761c202.tar.gz
hdf5-d13a9579f1e93f6f706f6471271658072761c202.tar.bz2
[svn-r4908] Purpose:
Documentation of bug^Wfeature Description: Documented the demented way libtool treats the Intel compiler on IA64 systems. I.e., it doesn't use the "-Wl," flag for during the linking phase of the compilation process. Solution: Explained how and where to change the libtool file after configuration so that you can compile the stuff. Platforms tested: Stone tablets
-rw-r--r--release_docs/RELEASE.txt14
1 files changed, 14 insertions, 0 deletions
diff --git a/release_docs/RELEASE.txt b/release_docs/RELEASE.txt
index bc29aeb..1dda35d 100644
--- a/release_docs/RELEASE.txt
+++ b/release_docs/RELEASE.txt
@@ -241,6 +241,7 @@ Supported Configuration Features Summary
Known Problems
==============
+
* Datasets or attributes which have a variable-length string datatype are
not printing correctly with h5dump and h5ls.
@@ -277,3 +278,16 @@ Known Problems
be off by default. One may turn it on by setting environment variable
HDF5_MPI_OPT_TYPES to a non-zero value such as 1.
+ * On IA64 systems, if you use a compiler other than GCC (such as Intel's
+ ecc compiler), you will need to modify the generated "libtool" program
+ after configuration is finished. On or around line 102 of the libtool
+ file, there are lines which look like:
+
+ # How to pass a linker flag through the compiler.
+ wl=""
+
+ change the lines to this:
+
+ # How to pass a linker flag through the compiler.
+ wl="-Wl,"
+