Skip to content

Commit

Permalink
suitesparse: Remove hard coded number of jobs to run in parallel
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
pmenzel committed Apr 9, 2021
1 parent 6709e97 commit 456523a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion suitesparse.be0
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit 456523a

Please sign in to comment.