component.mk 330 B

12345678910111213
  1. #
  2. # Component Makefile
  3. #
  4. COMPONENT_ADD_INCLUDEDIRS := include
  5. COMPONENT_SRCDIRS := src
  6. ifndef CONFIG_IDF_ENV_FPGA
  7. COMPONENT_OBJEXCLUDE += src/fpga_overrides.o
  8. endif
  9. # disable stack protection in files which are involved in initialization of that feature
  10. src/stack_check.o: CFLAGS := $(filter-out -fstack-protector%, $(CFLAGS))