diff options
Diffstat (limited to 'academic/SU2/README')
-rw-r--r-- | academic/SU2/README | 24 |
1 files changed, 17 insertions, 7 deletions
diff --git a/academic/SU2/README b/academic/SU2/README index fd4519ee574dc..69151c957e386 100644 --- a/academic/SU2/README +++ b/academic/SU2/README @@ -8,12 +8,22 @@ flow, elasticity, electrodynamics, chemically-reacting flows, and many others. Under active development by individuals all around the world on GitHub and is released under an open-source license. -Builds parallel version by default. -For serial version, delete the following configuration lines from -su2.Slackbuild script: +Optional dependencies: mpich or openmpi; OpenBLAS ---enable-mpi ---with-cxx=/usr/bin/mpicxx ---with-cc=/usr/bin/mpicc +Build options can be controlled by passing MESONOPTS to the SlackBuild +script. -and then no need for mpich / openmpi. +Builds parallel version by default if mpich or openmpi installed. If +mpich, use: + +MESONOPTS="-Dcustom-mpi=true -Dextra-deps=mpich" + +For OpenBlas, add "-Denable-openblas=true" + +See the docs for a complete list of options. + +Following installation, add these to your ~/.bashrc: + +export SU2_RUN=/usr/bin +export PATH=$PATH:$SU2_RUN +export PYTHONPATH=$PYTHONPATH:$SU2_RUN |