2017-08-23 23:53:20 +00:00
|
|
|
#
|
|
|
|
# Component Makefile
|
|
|
|
#
|
|
|
|
|
|
|
|
COMPONENT_SRCDIRS := .
|
|
|
|
|
2018-02-25 09:26:04 +00:00
|
|
|
COMPONENT_ADD_INCLUDEDIRS := include
|
2017-08-23 23:53:20 +00:00
|
|
|
|
|
|
|
COMPONENT_ADD_LDFLAGS := -lpthread
|
2018-02-01 16:17:38 +00:00
|
|
|
|
2019-04-26 16:12:35 +00:00
|
|
|
ifdef CONFIG_FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP
|
2018-02-01 16:17:38 +00:00
|
|
|
COMPONENT_ADD_LDFLAGS += -Wl,--wrap=vPortCleanUpTCB
|
|
|
|
endif
|
2019-07-28 09:22:08 +00:00
|
|
|
|
|
|
|
# Forces the linker to include pthread implementation from this component,
|
|
|
|
# instead of the weak implementations provided by libgcc.
|
|
|
|
COMPONENT_ADD_LDFLAGS += -u pthread_include_pthread_impl
|
|
|
|
COMPONENT_ADD_LDFLAGS += -u pthread_include_pthread_cond_impl
|
|
|
|
COMPONENT_ADD_LDFLAGS += -u pthread_include_pthread_local_storage_impl
|