diff options
author | Albert Cheng <acheng@hdfgroup.org> | 1999-08-02 19:51:13 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 1999-08-02 19:51:13 (GMT) |
commit | a9b97ccb0e4f849c68804f02c1c89e1201f1a427 (patch) | |
tree | e89573528b31993c63ebe29476c8fcdae2a6a9fc /INSTALL.parallel | |
parent | 0d1c9438f985ac5418b0d5f5307d60870ae17a28 (diff) | |
download | hdf5-a9b97ccb0e4f849c68804f02c1c89e1201f1a427.zip hdf5-a9b97ccb0e4f849c68804f02c1c89e1201f1a427.tar.gz hdf5-a9b97ccb0e4f849c68804f02c1c89e1201f1a427.tar.bz2 |
[svn-r1557] INSTALL:
Edited for 1.2.0beta release.
INSTALL.ascired:
Updated with simplified steps.
INSTALL_parallel:
Updated with information that was in INSTALL and INSTALL.parallel.
INSTALL_parallel.ascired:
Removed old setup no longer needed.
RUNPARALEL, RUNSERIAL, disable-shared are specified in config/intel-osf1.
README:
Update mailing list subscription instruction.
RELEASE:
Updated for 1.2.0beta release information.
INSTALL_Windows.txt:
Contains Windows platform installation instructions.
INSTALL.parallel:
Removed because its content has been moved to INSTALL_parallel.
Diffstat (limited to 'INSTALL.parallel')
-rw-r--r-- | INSTALL.parallel | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/INSTALL.parallel b/INSTALL.parallel deleted file mode 100644 index 278d4f3..0000000 --- a/INSTALL.parallel +++ /dev/null @@ -1,28 +0,0 @@ -This file contains instructions for the installation a version of HDF5 -that uses the parallel file I/O facilities of the MPI-IO library. A -parallel version of HDF5 can run in a serial environment as long as -the appropriate MPI-IO and MPI header files and libraries are -available. - -The parallel version of hdf5 can be build by generally following the -instructions in the INSTALL file for building a serial version and -using `mpicc' as the C compiler. This can be done by setting the CC -environment variable before invoking configure as with: - - $ CC=mpicc ./configure - -If the mpicc compiler is not available then a parallel library can -still be built as long as the appropriate header files and libraries -can be found. If these files are part of the default compiler search -paths then configuration is as simple as: - - $ ./configure --enable-parallel - -Otherwise, if the MPI and MPI-IO header files or library cannot be -found then the compiler search paths can be corrected, the files can -be moved, or configure can be told about the file locations. The -latter is done with something like: - - $ CPPFLAGS=-I/usr/local/mpi/include \ - LDFLAGS=-L/usr/local/mpi/lib/LINUX/ch_p4 \ - ./configure --enable-parallel |