소스 검색

Update README.md - use all cores (#610)

Enhex 2 년 전
부모
커밋
2855c4d3a8
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      Build/README.md

+ 2 - 2
Build/README.md

@@ -96,7 +96,7 @@ To implement your custom memory allocator override Allocate, Free, AlignedAlloca
 - Install cmake (apt-get install cmake)
 - Install cmake (apt-get install cmake)
 - Run: ./cmake_linux_clang_gcc.sh
 - Run: ./cmake_linux_clang_gcc.sh
 - Go to the Linux_Debug folder
 - Go to the Linux_Debug folder
-- Run: make -j 8 && ./UnitTests
+- Run: make -j$(nproc) && ./UnitTests
 
 
 ### Linux (Debian flavor, MinGW Cross Compile)
 ### Linux (Debian flavor, MinGW Cross Compile)
 
 
@@ -109,7 +109,7 @@ To implement your custom memory allocator override Allocate, Free, AlignedAlloca
 - Run: export WINEPATH="/usr/x86_64-w64-mingw32/lib;/usr/lib/gcc/x86_64-w64-mingw32/10-posix" (change it based on your environment)
 - Run: export WINEPATH="/usr/x86_64-w64-mingw32/lib;/usr/lib/gcc/x86_64-w64-mingw32/10-posix" (change it based on your environment)
 - Run: ./cmake_linux_mingw.sh Release (Debug doesn't work)
 - Run: ./cmake_linux_mingw.sh Release (Debug doesn't work)
 - Go to the MinGW_Release folder
 - Go to the MinGW_Release folder
-- Run: make -j 8 && wine UnitTests.exe
+- Run: make -j$(nproc) && wine UnitTests.exe
 - Run: wine Samples.exe
 - Run: wine Samples.exe
 
 
 ### Android
 ### Android