diff options
author | Albert Cheng <acheng@hdfgroup.org> | 1999-04-08 18:43:46 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 1999-04-08 18:43:46 (GMT) |
commit | bc351e9510514fdc7ffc0f83b56bafdb75761d70 (patch) | |
tree | 680ea881865bed3c9dd29de1f51d2294be81d171 /INSTALL_parallel.ascired | |
parent | 6f849488bc03f607545c3b5233da7213544af443 (diff) | |
download | hdf5-bc351e9510514fdc7ffc0f83b56bafdb75761d70.zip hdf5-bc351e9510514fdc7ffc0f83b56bafdb75761d70.tar.gz hdf5-bc351e9510514fdc7ffc0f83b56bafdb75761d70.tar.bz2 |
[svn-r1174] INSTALL_parallel.ascired:
Changed to use the mpio version by Daniel Sands.
Added --disable-shared to ask for a non-shared version.
configure:
$AR was not passed to the creation of libtool.
tflops uses xar instead of the generic ar.
Diffstat (limited to 'INSTALL_parallel.ascired')
-rw-r--r-- | INSTALL_parallel.ascired | 26 |
1 files changed, 24 insertions, 2 deletions
diff --git a/INSTALL_parallel.ascired b/INSTALL_parallel.ascired index e0deb5d..4e0243a 100644 --- a/INSTALL_parallel.ascired +++ b/INSTALL_parallel.ascired @@ -28,14 +28,36 @@ default_mode="-DDOS386 $debug -DH5F_LOW_DFLT=H5F_LOW_SEC2" MPICH="" ROMIO="/usr/community/mpi-io/romio/current" + +# new version by Daniel Sands +# /scratch/acheng/mpich-1.1.2 is a symbolic pointer. +# It is set to different value in different machines because +# Daniel Sands' $HOME path is different too. *sigh* +ROMIO="/scratch/acheng/mpich-1.1.2" +if [ ! -d $ROMIO ] +then + echo "ROMIO directory ($ROMIO) not found" + echo "Aborted" + exit 1 +fi mpi1_inc="" mpi1_lib="" mpio_inc="-I$ROMIO/include" -mpio_lib="-L$ROMIO/lib/tflop" +mpio_lib="-L$ROMIO/build/tflops/ptls/lib" + MPI_INC="$mpi1_inc $mpio_inc" MPI_LIB="$mpi1_lib $mpio_lib" +#for version 1.1 and later +RUNSERIAL="yod -sz 1" +export RUNSERIAL +RUNPARALLEL="yod -sz 8" +export RUNPARALLEL +LIBS="-lmpich" +export LIBS + + # Once these variables are set to the proper values for your installation, # you can run the configure program (i.e., ./configure tflop --enable-parallel=mpio) # to set up the Makefiles, etc. @@ -48,4 +70,4 @@ MPI_LIB="$mpi1_lib $mpio_lib" CFLAGS="$default_mode" \ CPPFLAGS=$MPI_INC \ LDFLAGS=$MPI_LIB \ -./configure --enable-parallel tflop +./configure --enable-parallel --disable-shared tflop |