From 83b9a7e2a5b8c137dde317ba7cce10b801b681e8 Mon Sep 17 00:00:00 2001 From: Jakob Hasse Date: Mon, 11 Sep 2023 17:45:10 +0800 Subject: [PATCH] fix(pthread): fixed pthread_condvar linker hook --- components/pthread/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/pthread/CMakeLists.txt b/components/pthread/CMakeLists.txt index 1db395070e..19f5bcac89 100644 --- a/components/pthread/CMakeLists.txt +++ b/components/pthread/CMakeLists.txt @@ -9,7 +9,7 @@ idf_component_register(SRCS ${sources} idf_build_set_property(COMPILE_DEFINITIONS "-D_POSIX_READER_WRITER_LOCKS" APPEND) set(extra_link_flags "-u pthread_include_pthread_impl") -list(APPEND extra_link_flags "-u pthread_include_pthread_cond_impl") +list(APPEND extra_link_flags "-u pthread_include_pthread_cond_var_impl") list(APPEND extra_link_flags "-u pthread_include_pthread_local_storage_impl") list(APPEND extra_link_flags "-u pthread_include_pthread_rwlock_impl")