diff --git a/Building-for-Linux.md b/Building-for-Linux.md index f256bf5..4744817 100644 --- a/Building-for-Linux.md +++ b/Building-for-Linux.md @@ -62,7 +62,7 @@ The `--recursive` option automatically clones the required Git submodules too. mkdir build cd build cmake ../ -make +cmake --build . -- -j"$(nproc)" sudo make install (optional) ``` - To enable HLE AAC Decoding, use `cmake .. -DENABLE_FFMPEG_AUDIO_DECODER=ON` instead. @@ -79,7 +79,7 @@ cd build cmake .. -DCMAKE_CXX_COMPILER=clang++-5.0 \ -DCMAKE_C_COMPILER=clang-5.0 \ -DCMAKE_CXX_FLAGS="-O2 -g -stdlib=libc++" -make +cmake --build . -- -j"$(nproc)" sudo make install (optional) ``` @@ -89,7 +89,7 @@ sudo make install (optional) mkdir build cd build cmake .. -DCMAKE_BUILD_TYPE=Release -make +cmake --build . -- -j"$(nproc)" sudo make install (optional) ``` - To enable HLE AAC Decoding, use `cmake .. -DCMAKE_BUILD_TYPE=Release -DENABLE_FFMPEG_AUDIO_DECODER=ON` instead. @@ -100,7 +100,7 @@ sudo make install (optional) mkdir build cd build cmake .. -DCMAKE_BUILD_TYPE=RelWithDebInfo -make +cmake --build . -- -j"$(nproc)" sudo make install (optional) ```