From 199c98eaa76d35d1122a02596b3a1db93b07c22c Mon Sep 17 00:00:00 2001 From: Rob Hughes Date: Wed, 13 Nov 2019 11:41:36 +0000 Subject: Fix link error due to pthread being linked in the wrong order Change-Id: I9602c758fe462b65d67de491d91fb2392b09b8bd Signed-off-by: Robert Hughes --- CMakeLists.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6856da63f6..89f0e5af56 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -564,7 +564,7 @@ if(ARMCOMPUTECL) target_link_libraries(armnn ${OPENCL_LIBRARIES}) endif() -if(PROFILING_BACKEND_STREAMLINE) +if(PROFILING_BACKEND_STREAMLINE AND (NOT ("${CMAKE_SYSTEM_NAME}" STREQUAL Android))) target_link_libraries(armnn pthread) endif() @@ -951,14 +951,14 @@ if(BUILD_GATORD_MOCK) add_executable_ex(GartordMock tests/profiling/gatordmock/GatordMockMain.cpp) - if(Threads_FOUND AND (NOT ("${CMAKE_SYSTEM_NAME}" STREQUAL Android))) - target_link_libraries(GartordMock pthread) - endif() - target_link_libraries(GartordMock armnn gatordMockService ${Boost_PROGRAM_OPTIONS_LIBRARY} ${Boost_SYSTEM_LIBRARY}) + if(Threads_FOUND AND (NOT ("${CMAKE_SYSTEM_NAME}" STREQUAL Android))) + target_link_libraries(GartordMock pthread) + endif() + endif() -- cgit v1.2.1