From fe8dd954839c6ea5e69a253a1f22f82e921c2403 Mon Sep 17 00:00:00 2001 From: Zhiwei Li Date: Tue, 24 May 2022 20:25:23 +0800 Subject: [PATCH] Fix the wrong number of compilation threads --- tools/cmake/cmake-build-armeabi-v7a.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/cmake/cmake-build-armeabi-v7a.sh b/tools/cmake/cmake-build-armeabi-v7a.sh index 2a2f1f59..f306c9d5 100755 --- a/tools/cmake/cmake-build-armeabi-v7a.sh +++ b/tools/cmake/cmake-build-armeabi-v7a.sh @@ -69,5 +69,5 @@ cmake -DANDROID_ABI="armeabi-v7a" \ -DMACE_ENABLE_RPCMEM=ON \ -DCMAKE_INSTALL_PREFIX=install \ ../../.. -make -j$(nproc)1 && make install +make -j$(nproc) && make install cd ../../..