diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2002-04-17 17:28:09 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2002-04-17 17:28:09 (GMT) |
commit | 838a8c5058136410ea6e6b0fcdc6831b695e1562 (patch) | |
tree | db66d86e47db2d3e0b957f609d3b7dcbdf81d685 | |
parent | 98c39db39136e96424d5ab2f846e62d4c71c30c5 (diff) | |
download | hdf5-838a8c5058136410ea6e6b0fcdc6831b695e1562.zip hdf5-838a8c5058136410ea6e6b0fcdc6831b695e1562.tar.gz hdf5-838a8c5058136410ea6e6b0fcdc6831b695e1562.tar.bz2 |
[svn-r5194] Purpose:
Maintenance
Description:
The tflops option local modification in bin/config.sub was wiped out
during the latest autoconfigure tools upgrade. Instead of adding it
in for every autoconfigure tools upgrade, I changed the instruction
to use a standard feature in configure.
./configure --host=i386-intel-osf1
This is a bit more typing but no more local modification.
-rw-r--r-- | release_docs/INSTALL_TFLOPS | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/release_docs/INSTALL_TFLOPS b/release_docs/INSTALL_TFLOPS index a05ef7f..b3e8421 100644 --- a/release_docs/INSTALL_TFLOPS +++ b/release_docs/INSTALL_TFLOPS @@ -9,7 +9,7 @@ Software locations ------------------ The zlib compression library is installed in /usr/community/hdf5/ZLIB. The mpich library, including mpi-io support, is in -/usr/community/mpich/mpich-1.2.0. +/usr/community/mpich/mpich-1.2.1. --------------- Sequential HDF5: @@ -30,7 +30,12 @@ FROM SASN100, 1) cd <hdf5> -2) ./configure tflop +2) ./configure --host=i386-intel-osf1 + You may safely ignore the WARNING message, + configure: WARNING: If you wanted to set the --build type, don't use --host. + If a cross compiler is detected then cross compile mode will be used. + You may add the option "--host=i386-intel-osf1" to get rid of the WARNING. + Due to a bug, you need to patch up two Makefile, src/Makefile and test/Makefile, before the next step. You can use the following shell commands. @@ -103,7 +108,12 @@ FROM SASN100, 1) cd <hdf5> -2) CC=/usr/community/mpich/mpich-1.2.0/bin/mpicc ./configure tflop +2) CC=/usr/community/mpich/mpich-1.2.1/bin/mpicc ./configure --host=i386-intel-osf1 + You may safely ignore the WARNING message, + configure: WARNING: If you wanted to set the --build type, don't use --host. + If a cross compiler is detected then cross compile mode will be used. + You may add the option "--host=i386-intel-osf1" to get rid of the WARNING. + Due to a bug, you need to patch up two Makefile, src/Makefile and test/Makefile, before the next step. You can use the following shell commands. |