1
0
mirror of https://github.com/ohwgiles/laminar.git synced 2024-10-27 20:34:20 +00:00

README: Use nproc to get cpu core count

This way, make will always use all the available cpu cores.
This commit is contained in:
Starbeamrainbowlabs 2021-06-23 16:38:02 +01:00 committed by Oliver Giles
parent f3a6ba2f4b
commit fe4caa155b

View File

@ -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
```