From f9b938bc888dd8c13125a818479834d5fbdb1b76 Mon Sep 17 00:00:00 2001 From: Kwabena N Amponsah Date: Thu, 17 Aug 2023 12:22:04 +0100 Subject: [PATCH] Speed up petsc build --- scripts/install_petsc_hdf5.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/install_petsc_hdf5.sh b/scripts/install_petsc_hdf5.sh index b8a22b8..e54a547 100755 --- a/scripts/install_petsc_hdf5.sh +++ b/scripts/install_petsc_hdf5.sh @@ -197,7 +197,7 @@ case ${petsc_arch} in --download-metis=1 \ --download-hypre=${download_hypre} \ --with-shared-libraries && \ - make all test + make -j ${parallel} all ;; linux-gnu-opt) @@ -217,7 +217,7 @@ case ${petsc_arch} in --download-hypre=${download_hypre} \ --with-shared-libraries \ --with-debugging=0 && \ - make all test + make -j ${parallel} all ;; *) ;;