mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
71 lines
1.6 KiB
Bash
Executable File
71 lines
1.6 KiB
Bash
Executable File
#!/bin/sh
|
|
cd ${0%/*} || exit 1 # Run from this directory
|
|
|
|
# Parse arguments for library compilation
|
|
targetType=libso
|
|
. $WM_PROJECT_DIR/wmake/scripts/AllwmakeParseArguments
|
|
|
|
# get SCOTCH_VERSION, SCOTCH_ARCH_PATH
|
|
if settings=`$WM_PROJECT_DIR/bin/foamEtcFile config.sh/scotch`
|
|
then
|
|
. $settings
|
|
echo "using SCOTCH_ARCH_PATH=$SCOTCH_ARCH_PATH"
|
|
else
|
|
echo
|
|
echo "Error: no config.sh/scotch settings"
|
|
echo
|
|
fi
|
|
|
|
|
|
#
|
|
# define how to create an mpi-versioned library of $targetType
|
|
# compile into qualified directory
|
|
# use sentinel file to handle version changes
|
|
#
|
|
wmakeMpiLib()
|
|
{
|
|
set +x
|
|
for libName
|
|
do
|
|
(
|
|
WM_OPTIONS="$WM_OPTIONS$WM_MPLIB"
|
|
whichmpi="$WM_PROJECT_DIR/platforms/$WM_OPTIONS/src/parallel/decompose/$libName/using:$FOAM_MPI"
|
|
whichscotch="$WM_PROJECT_DIR/platforms/$WM_OPTIONS/src/parallel/decompose/$libName/using:$SCOTCH_VERSION"
|
|
[ -e "$whichmpi" -a -e "$whichscotch" ] || wclean $libName
|
|
echo "wmake $targetType $libName"
|
|
wmake $targetType $libName
|
|
touch "$whichmpi" "$whichscotch"
|
|
)
|
|
done
|
|
set -x
|
|
}
|
|
|
|
set -x
|
|
|
|
wmakeLnInclude decompositionMethods
|
|
|
|
if [ -n "$SCOTCH_ARCH_PATH" ]
|
|
then
|
|
wmake $targetType scotchDecomp
|
|
|
|
if [ -d "$FOAM_LIBBIN/$FOAM_MPI" ]
|
|
then
|
|
wmakeMpiLib ptscotchDecomp
|
|
fi
|
|
else
|
|
echo
|
|
echo "Skipping scotchDecomp (ptscotchDecomp)"
|
|
echo
|
|
fi
|
|
|
|
|
|
# Try and build metisDecomp (has own logic)
|
|
(cd metisDecomp && ./Allwmake $targetType)
|
|
|
|
|
|
wmake $targetType decompositionMethods
|
|
|
|
wmake $targetType decompose
|
|
|
|
# ----------------------------------------------------------------- end-of-file
|