2021-08-27 05:00:10 +00:00
|
|
|
set(sources "pthread.c"
|
|
|
|
"pthread_cond_var.c"
|
|
|
|
"pthread_local_storage.c"
|
|
|
|
"pthread_rwlock.c")
|
|
|
|
|
|
|
|
idf_component_register(SRCS ${sources}
|
2019-04-28 07:38:23 +00:00
|
|
|
INCLUDE_DIRS include)
|
2018-06-06 06:14:03 +00:00
|
|
|
|
2021-08-27 05:00:10 +00:00
|
|
|
idf_build_set_property(COMPILE_DEFINITIONS "-D_POSIX_READER_WRITER_LOCKS" APPEND)
|
|
|
|
|
2019-11-05 11:20:26 +00:00
|
|
|
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_local_storage_impl")
|
2021-08-27 05:00:10 +00:00
|
|
|
list(APPEND extra_link_flags "-u pthread_include_pthread_rwlock_impl")
|
2019-07-28 09:22:08 +00:00
|
|
|
|
2019-04-26 16:12:35 +00:00
|
|
|
if(CONFIG_FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP)
|
2020-04-28 13:04:51 +00:00
|
|
|
target_link_libraries(${COMPONENT_LIB} INTERFACE "-Wl,--wrap=vPortCleanUpTCB")
|
2018-06-06 06:14:03 +00:00
|
|
|
endif()
|
2019-07-28 09:22:08 +00:00
|
|
|
|
|
|
|
if(extra_link_flags)
|
|
|
|
target_link_libraries(${COMPONENT_LIB} INTERFACE "${extra_link_flags}")
|
|
|
|
endif()
|