Skip to content

Commit

Permalink
spla was not compiled by default when is sirius is
Browse files Browse the repository at this point in the history
  • Loading branch information
mtaillefumier authored and oschuett committed Mar 8, 2021
1 parent 27414a6 commit 75914ce
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions tools/toolchain/install_cp2k_toolchain.sh
Original file line number Diff line number Diff line change
Expand Up @@ -309,8 +309,8 @@ with_spglib="__INSTALL__"
with_hdf5="__DONTUSE__"
with_elpa="__INSTALL__"
with_libvdwxc="__DONTUSE__"
with_spfft="__INSTALL__"
with_spla="__INSTALL__"
with_spfft="__DONTUSE__"
with_spla="__DONTUSE__"
with_cosma="__INSTALL__"
with_libvori="__INSTALL__"
# for MPI, we try to detect system MPI variant
Expand Down Expand Up @@ -619,6 +619,9 @@ while [ $# -ge 1 ]; do
--with-libvori*)
with_libvori=$(read_with $1)
;;
--with-spla*)
with_spla=$(read_with $1)
;;
--help*)
show_help
exit 0
Expand Down Expand Up @@ -746,6 +749,7 @@ fi
# SIRIUS dependencies. Remove the gsl library from the dependencies if SIRIUS is not activated
if [ "$with_sirius" = "__INSTALL__" ]; then
[ "$with_spfft" = "__DONTUSE__" ] && with_spfft="__INSTALL__"
[ "$with_spla" = "__DONTUSE__" ] && with_spla="__INSTALL__"
[ "$with_gsl" = "__DONTUSE__" ] && with_gsl="__INSTALL__"
[ "$with_libxc" = "__DONTUSE__" ] && with_libxc="__INSTALL__"
[ "$with_fftw" = "__DONTUSE__" ] && with_fftw="__INSTALL__"
Expand Down

0 comments on commit 75914ce

Please sign in to comment.