diff options
author | Robb Matzke <matzke@llnl.gov> | 1999-07-13 17:58:07 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1999-07-13 17:58:07 (GMT) |
commit | 9287c401d980be788255e1b29091a9204a494ed8 (patch) | |
tree | ec44c7f92328a9cc113bdcd284b42c9f2065c23b /INSTALL | |
parent | ccd97f3d8f20768faaa7675041fff05ec9f79e89 (diff) | |
download | hdf5-9287c401d980be788255e1b29091a9204a494ed8.zip hdf5-9287c401d980be788255e1b29091a9204a494ed8.tar.gz hdf5-9287c401d980be788255e1b29091a9204a494ed8.tar.bz2 |
[svn-r1473] ./INSTALL [1.2, 1.3]
Updated version numbers. Fixed a couple typos.
Diffstat (limited to 'INSTALL')
-rw-r--r-- | INSTALL | 34 |
1 files changed, 17 insertions, 17 deletions
@@ -10,15 +10,15 @@ INSTALL.ascired for instructions. format uncompressed or compressed with compress, gzip, or bzip2. - The HDF team also makes snapshots of the source code available - on a regular basis but these. These snapshots are unsupported - (that is, the HDF team will not release a bug-fix on a - particular snapshot; rather any bug fixes will be rolled into - the next snapshot). Furthermore, the snapshots have only been - tested on a few machines and may not test correctly for - parallel applications. Snapshots can be found at + The HDF team also makes snapshots of the source code available + on a regular basis. These snapshots are unsupported (that is, + the HDF team will not release a bug-fix on a particular + snapshot; rather any bug fixes will be rolled into the next + snapshot). Furthermore, the snapshots have only been tested on + a few machines and may not test correctly for parallel + applications. Snapshots can be found at ftp://hdf.ncsa.uiuc.edu/pub/outgoing/hdf5/snapshots in a - limited number for formats. + limited number of formats. * Warnings about compilers OUTPUT FROM THE FOLLOWING COMPILERS SHOULD BE EXTREMELY @@ -58,8 +58,8 @@ INSTALL.ascired for instructions. library, header files, and support programs. - $ gunzip <hdf5-1.0.0.tar.gz |tar xf - - $ cd hdf5-1.0.0 + $ gunzip <hdf5-1.2.0.tar.gz |tar xf - + $ cd hdf5-1.2.0 $ make check $ make install @@ -67,7 +67,7 @@ INSTALL.ascired for instructions. ** Zlib The HDF5 library has a predefined compression filter that uses the "deflate" method for chunked datatsets. If zlib-1.1.2 or - later is found then hdf5 will use it, otherwise HDF5's + later is found then HDF5 will use it, otherwise HDF5's predefined compression method will degenerate to a no-op (the compression filter will succeed but the data will not be compressed). @@ -82,19 +82,19 @@ INSTALL.ascired for instructions. ** Unpacking the distribution The HDF5 source code is distributed in a variety of formats which can be unpacked with the following commands, each of - which creates an `hdf5-1.0.0' directory. + which creates an `hdf5-1.2.0' directory. *** Non-compressed tar archive (*.tar) - $ tar xf hdf5-1.0.0.tar + $ tar xf hdf5-1.2.0.tar *** Compressed tar archive (*.tar.Z) - $ uncompress -c <hdf5-1.0.0.tar.Z |tar xf - + $ uncompress -c <hdf5-1.2.0.tar.Z |tar xf - *** Gzip'd tar archive (*.tar.gz) - $ gunzip <hdf5-1.0.0.tar.gz |tar xf - + $ gunzip <hdf5-1.2.0.tar.gz |tar xf - *** Bzip'd tar archive (*.tar.bz2) - $ bunzip2 <hdf5-1.0.0.tar.gz |tar xf - + $ bunzip2 <hdf5-1.2.0.tar.gz |tar xf - ** Configuring HDF5 uses the GNU autoconf system for configuration, which @@ -121,7 +121,7 @@ INSTALL.ascired for instructions. than /usr/local specify the path with the `--prefix=PATH' switch: - $ ./configure --prefix=/home/robb + $ ./configure --prefix=$HOME If shared libraries are being built (the default) then the final home of the shared library must be specified with this |