I'm honestly a bit of a noob here, this is like the third thing I built, but I got to the last step of the build, and when running make -j$(nproc) I get the error message in the subject line.
Am I missing something? (do I need to get the APK before this?)
running through the steps again (and double checking that dependencies were there) once I get to thecmake .. step, I also get a CMake error:
CMake Error at /usr/share/cmake-3.10/Modules/FindPackageHandleStandardArgs.cmake:137 (message):
Could NOT find Threads (missing: Threads_FOUND)
Call Stack (most recent call first):
/usr/share/cmake-3.10/Modules/FindPackageHandleStandardArgs.cmake:378 (_FPHSA_FAILURE_MESSAGE)
/usr/share/cmake-3.10/Modules/FindThreads.cmake:205 (FIND_PACKAGE_HANDLE_STANDARD_ARGS)
CMakeLists.txt:19 (find_package)
Well obviously if the cmake command failed then it wont generate the files needed for make. This problem is pretty common, join the Discord server to discuss a fix.
I'm honestly a bit of a noob here, this is like the third thing I built, but I got to the last step of the build, and when running
make -j$(nproc)
I get the error message in the subject line.Am I missing something? (do I need to get the APK before this?)
running through the steps again (and double checking that dependencies were there) once I get to the
cmake ..
step, I also get a CMake error:CMake Error at /usr/share/cmake-3.10/Modules/FindPackageHandleStandardArgs.cmake:137 (message): Could NOT find Threads (missing: Threads_FOUND) Call Stack (most recent call first): /usr/share/cmake-3.10/Modules/FindPackageHandleStandardArgs.cmake:378 (_FPHSA_FAILURE_MESSAGE) /usr/share/cmake-3.10/Modules/FindThreads.cmake:205 (FIND_PACKAGE_HANDLE_STANDARD_ARGS) CMakeLists.txt:19 (find_package)
-- Configuring incomplete, errors occurred!