component.mk 452 B

12345678910111213141516
  1. #
  2. # Component Makefile
  3. #
  4. COMPONENT_ADD_INCLUDEDIRS := include
  5. COMPONENT_SRCDIRS := src
  6. # IPC framework is not applicable if freertos unicore config is selected
  7. ifdef CONFIG_FREERTOS_UNICORE
  8. ifndef CONFIG_APPTRACE_GCOV_ENABLE
  9. COMPONENT_OBJEXCLUDE := src/ipc.o
  10. endif
  11. endif
  12. # disable stack protection in files which are involved in initialization of that feature
  13. src/stack_check.o: CFLAGS := $(filter-out -fstack-protector%, $(CFLAGS))