summaryrefslogtreecommitdiffstats
path: root/release_docs
diff options
context:
space:
mode:
authorScot Breitenfeld <brtnfld@hdfgroup.org>2015-04-17 21:39:12 (GMT)
committerScot Breitenfeld <brtnfld@hdfgroup.org>2015-04-17 21:39:12 (GMT)
commit50db6abee70f1812407d1efd017bbd7843ff76bd (patch)
tree4a8ec8a199d7e35517c4576f41ff17b1842287b9 /release_docs
parent8bdafb38d7e493942d080bc741a3656a88e66f15 (diff)
parent7bf3a426e8634c851d9c550fd980f07d3e29fc1b (diff)
downloadhdf5-50db6abee70f1812407d1efd017bbd7843ff76bd.zip
hdf5-50db6abee70f1812407d1efd017bbd7843ff76bd.tar.gz
hdf5-50db6abee70f1812407d1efd017bbd7843ff76bd.tar.bz2
[svn-r26838] svn merge -r26813:26837 https://svn.hdfgroup.uiuc.edu/hdf5/trunk
Diffstat (limited to 'release_docs')
-rw-r--r--release_docs/INSTALL_parallel9
1 files changed, 4 insertions, 5 deletions
diff --git a/release_docs/INSTALL_parallel b/release_docs/INSTALL_parallel
index c38c3fc..e4570b7 100644
--- a/release_docs/INSTALL_parallel
+++ b/release_docs/INSTALL_parallel
@@ -49,9 +49,8 @@ more detailed explanations.
----------------------------
HDF5 knows several parallel compilers: mpicc, hcc, mpcc, mpcc_r. To build
parallel HDF5 with one of the above, just set CC as it and configure.
-The "--enable-parallel" is optional in this case.
- $ CC=/usr/local/mpi/bin/mpicc ./configure --prefix=<install-directory>
+ $ CC=/usr/local/mpi/bin/mpicc ./configure --enable-parallel --prefix=<install-directory>
$ make # build the library
$ make check # verify the correctness
# Read the Details section about parallel tests.
@@ -79,7 +78,7 @@ is supported.
Then do the following steps:
- $ ./configure --disable-shared --prefix=<install-directory>
+ $ ./configure --enable-parallel --disable-shared --prefix=<install-directory>
$ make # build the library
$ make check # verify the correctness
# Read the Details section about parallel tests.
@@ -176,8 +175,8 @@ a properly installed parallel compiler (e.g., MPICH's mpicc or IBM's mpcc_r)
and supply the compiler name as the value of the CC environment variable.
For examples,
- $ CC=mpcc_r ./configure
- $ CC=/usr/local/mpi/bin/mpicc ./configure
+ $ CC=mpcc_r ./configure --enable-parallel
+ $ CC=/usr/local/mpi/bin/mpicc ./configure --enable-parallel
If no such a compiler command is available then you must use your normal
C compiler along with the location(s) of MPI/MPI-IO files to be used.