From 8b0e6e9ca3b1de19dc7419fdb3694825edb33c20 Mon Sep 17 00:00:00 2001 From: OPPO9008 <41640509+OPPO9008@users.noreply.github.com> Date: Wed, 1 May 2024 03:59:15 +0800 Subject: [PATCH] remove pthreads The android libc, bionic, provides built-in support for pthreads, so no additional linking (-lpthreads) is necessary. It does not implement full POSIX threads functionality and leaves out support for read/write locks --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 70d57d107..ae38f6eed 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -179,7 +179,7 @@ else() ) if (XMRIG_OS_ANDROID) - set(EXTRA_LIBS pthread rt dl log) + set(EXTRA_LIBS rt dl log) elseif (XMRIG_OS_LINUX) list(APPEND SOURCES_OS src/crypto/common/LinuxMemory.h