From c266f260fb24a7149b5da2afedda949001851c96 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 addc69d324..a921b89bbe 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")