Compiling INMOST with Zoltan on Linux
Assuming you already unpacked Trilinos source and prepared configure scripts, just add Trilinos_ENABLE_Zoltan
option to do-configure
script:
cd "$TRILINOS_BASE"
cd build
./do-configure -DTrilinos_ENABLE_Zoltan=ON
make all
make install
Note, if you do not want to use Trilinos solvers, remove all Trilinos_ENABLE_*
lines from MyConfigureOptions.cmake
.
cd "$INMOST_ROOT"
mkdir -p INMOST-build
cd INMOST-build
cmake -DUSE_PARTITIONER_ZOLTAN=ON -DZOLTAN_DIR="$TRILINOS_INSTALL_PATH" ../INMOST-master
make all