mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-03-31 17:10:47 +08:00
[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.
This commit is contained in:
parent
6f849488bc
commit
bc351e9510
@ -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
|
||||
|
2
configure
vendored
2
configure
vendored
@ -1300,7 +1300,7 @@ case "$host" in
|
||||
esac
|
||||
|
||||
# Actually configure libtool. ac_aux_dir is where install-sh is found.
|
||||
CC="$CC" CFLAGS="$CFLAGS" CPPFLAGS="$CPPFLAGS" \
|
||||
AR="$AR" CC="$CC" CFLAGS="$CFLAGS" CPPFLAGS="$CPPFLAGS" \
|
||||
LD="$LD" NM="$NM" RANLIB="$RANLIB" LN_S="$LN_S" \
|
||||
${CONFIG_SHELL-/bin/sh} $ac_aux_dir/ltconfig \
|
||||
$libtool_flags --no-verify $ac_aux_dir/ltmain.sh $host \
|
||||
|
Loading…
x
Reference in New Issue
Block a user