Skip to content

Commit

Permalink
Merge branch 'bugfix/pthread_cond_var_link_hook' into 'master'
Browse files Browse the repository at this point in the history
bugfix(pthread): fixed pthread_condvar linker hook

See merge request espressif/esp-idf!25911
  • Loading branch information
0xjakob committed Sep 18, 2023
2 parents 789569a + ccaceec commit a412474
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/pthread/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ idf_component_register(SRCS ${sources}
idf_build_set_property(COMPILE_DEFINITIONS "_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")
list(APPEND extra_link_flags "-u pthread_include_pthread_semaphore_impl")
Expand Down

0 comments on commit a412474

Please sign in to comment.