mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
c392c06216
Unlike COMPILE_OPTIONS, COMPILE_DEFINITIONS CMake property assumes values without the -D prefix, such as NAME or NAME=VAL. Previously, IDF build system was passing COMPILE_DEFINITIONS build property to CMake COMPILE_OPTIONS property, so -D prefix was not a problem. Now that COMPILE_DEFINITIONS CMake property is used, -D prefix has to be removed. (Note that this doesn't affect 'target_compile_definitions' function, which strips -D prefix before adding the definition to the property.)
25 lines
918 B
CMake
25 lines
918 B
CMake
set(sources "pthread.c"
|
|
"pthread_cond_var.c"
|
|
"pthread_local_storage.c"
|
|
"pthread_rwlock.c")
|
|
|
|
idf_component_register(SRCS ${sources}
|
|
INCLUDE_DIRS include)
|
|
|
|
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_local_storage_impl")
|
|
list(APPEND extra_link_flags "-u pthread_include_pthread_rwlock_impl")
|
|
|
|
if(CONFIG_FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP AND NOT CONFIG_FREERTOS_SMP) # See IDF-4955
|
|
target_link_libraries(${COMPONENT_LIB} INTERFACE "-Wl,--wrap=vPortCleanUpTCB")
|
|
endif()
|
|
|
|
if(extra_link_flags)
|
|
target_link_libraries(${COMPONENT_LIB} INTERFACE "${extra_link_flags}")
|
|
endif()
|
|
|
|
target_compile_options(${COMPONENT_LIB} PRIVATE "-Wno-format")
|