From 46f28cc820dea16a0c6a9e3baab3f3ff774e7b56 Mon Sep 17 00:00:00 2001 From: cobalt2727 <60624944+cobalt2727@users.noreply.github.com> Date: Thu, 2 Jul 2020 11:29:23 -0500 Subject: [PATCH] Make the process faster, depending on the hardware --- Building-for-Linux.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Building-for-Linux.md b/Building-for-Linux.md index 904dccc..a52233f 100644 --- a/Building-for-Linux.md +++ b/Building-for-Linux.md @@ -18,19 +18,19 @@ For 5.0-10149 and newer versions, a C++ compiler with C++17 support (e.g. GCC 7+ ### Global Build 1. `mkdir build && cd build` 2. `cmake ..` -3. `make` +3. `make -j$(nproc)` 4. `sudo make install` (optional, to install) ### Local Build 1. `mkdir build && cd build` 2. `cmake .. -DLINUX_LOCAL_DEV=true` -3. `make` +3. `make -j$(nproc)` 4. `ln -s ../Data/Sys Binaries/` ### Portable Build 1. `mkdir build && cd build` 2. `cmake .. -DLINUX_LOCAL_DEV=true` -3. `make` +3. `make -j$(nproc)` 4. `cp -r ../Data/Sys/ Binaries/` 5. `touch Binaries/portable.txt`