From 8f3839cf56b7b3c45035ad34e4497eb4a8ba0c49 Mon Sep 17 00:00:00 2001 From: "ahrenholz@gmail.com" Date: Fri, 27 Jul 2012 17:27:35 +0000 Subject: [PATCH] make -j8 for faster builds! --- wiki/Quickstart.wiki | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wiki/Quickstart.wiki b/wiki/Quickstart.wiki index 9785c428..6d9d45b0 100644 --- a/wiki/Quickstart.wiki +++ b/wiki/Quickstart.wiki @@ -85,7 +85,8 @@ In this example, we download the SVN source snapshot [http://downloads.pf.itd.nr cd core ./bootstrap.sh ./configure - make + # -j8 is for 8 concurrent jobs on a multi-core system + make -j8 sudo make install }}}