From fe4caa155b0b113c8af3b7dd410d3539098932f9 Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Wed, 23 Jun 2021 16:38:02 +0100 Subject: [PATCH] README: Use nproc to get cpu core count This way, make will always use all the available cpu cores. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9e848cd..89b0462 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ Then compile and install laminar with: git clone https://github.com/ohwgiles/laminar.git cd laminar cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr -make -j4 +make -j "$(nproc)" # Warning: the following will overwrite an existing /etc/laminar.conf sudo make install ```