Skip to content
Snippets Groups Projects
Commit 82478fba authored by Pietro Incardona's avatar Pietro Incardona
Browse files

Fixing installation of trilinos on CYGWIN

parent fe48509e
No related branches found
No related tags found
No related merge requests found
......@@ -160,6 +160,12 @@ if [ ! -d "$1/TRILINOS" ]; then
# petsc_openmp="--with-openmp=yes"
fi
if [ x"$platform" == x"cygwin" ]; then
configure_trilinos_options="$configure_trilinos_options -D Trilinos_CXX11_FLAGS=-std=gnu++11 "
fi
cmake -D CMAKE_INSTALL_PREFIX:PATH=$1/TRILINOS -D CMAKE_BUILD_TYPE=RELEASE $conf_trl_openmp -D Trilinos_ENABLE_TESTS=OFF -D Trilinos_ENABLE_ALL_PACKAGES=ON $configure_trilinos_options ../.
cmake -D CMAKE_INSTALL_PREFIX:PATH=$1/TRILINOS -D CMAKE_BUILD_TYPE=RELEASE $conf_trl_openmp -D Trilinos_ENABLE_TESTS=OFF -D Trilinos_ENABLE_ALL_PACKAGES=ON $configure_trilinos_options ../.
make -j $2
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment