From 456523a49ee4a8b5498d3fe69555e77f06b85d81 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Fri, 9 Apr 2021 07:35:13 +0200 Subject: [PATCH] suitesparse: Remove hard coded number of jobs to run in parallel SuiteSparse uses `JOBS` in their build scripts, so I hard-coded it for testing purposes. This should be passed using `BEE_MAKEFLAGS`. BEE_TMP_TMPDIR=/dev/shm BEE_TMP_BUILDROOT=/dev/shm/bee-X BEE_MAKEFLAGS="-j$(nproc) JOBS=$(nproc)" ./suitesparse.be0 Increment the revision to 1. --- suitesparse.be0 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/suitesparse.be0 b/suitesparse.be0 index 7e2157d40..f41846f67 100755 --- a/suitesparse.be0 +++ b/suitesparse.be0 @@ -23,7 +23,7 @@ mee_configure() { } mee_build() { - bee_build JOBS=80 CMAKE_OPTIONS="-DCMAKE_INSTALL_PREFIX=${PREFIX} -DCMAKE_INSTALL_LIBDIR=${LIBDIR}" + bee_build CMAKE_OPTIONS="-DCMAKE_INSTALL_PREFIX=${PREFIX} -DCMAKE_INSTALL_LIBDIR=${LIBDIR}" } mee_install() {