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`