Package: spades / 3.13.0+dfsg2-2

0110_build_single_thread.patch Patch series | download
1
2
3
4
5
6
7
8
9
10
11
12
13
Description: build in single thread
 Upstream builds this in 8 threads, which might overwhelm weaker machines.
Author: Sascha Steinbiss <satta@debian.org>
--- spades.orig/spades_compile.sh
+++ spades/spades_compile.sh
@@ -20,6 +20,6 @@
 set -e
 cd "$BASEDIR/$BUILD_DIR"
 cmake -G "Unix Makefiles" -DCMAKE_INSTALL_PREFIX="$PREFIX" $* "$BASEDIR/src"
-make -j 8
+make -j 1
 make install
 cd $PREFIX