2019-03-21 12:21:01 +08:00
|
|
|
#
|
|
|
|
# Component Makefile
|
|
|
|
#
|
|
|
|
|
|
|
|
COMPONENT_ADD_INCLUDEDIRS := include
|
|
|
|
COMPONENT_SRCDIRS := src
|
|
|
|
|
2019-08-15 12:35:59 +05:30
|
|
|
# IPC framework is not applicable if freertos unicore config is selected
|
|
|
|
ifdef CONFIG_FREERTOS_UNICORE
|
2021-11-12 19:25:41 +03:00
|
|
|
ifndef CONFIG_APPTRACE_GCOV_ENABLE
|
|
|
|
COMPONENT_OBJEXCLUDE := src/ipc.o
|
|
|
|
endif
|
2019-08-15 12:35:59 +05:30
|
|
|
endif
|
|
|
|
|
2019-03-21 12:21:01 +08:00
|
|
|
# disable stack protection in files which are involved in initialization of that feature
|
2019-06-06 18:51:52 +05:30
|
|
|
src/stack_check.o: CFLAGS := $(filter-out -fstack-protector%, $(CFLAGS))
|