/ components / esp_common / component.mk
component.mk
 1  #
 2  # Component Makefile
 3  #
 4  
 5  COMPONENT_ADD_INCLUDEDIRS := include
 6  COMPONENT_SRCDIRS := src
 7  
 8  ifndef CONFIG_IDF_ENV_FPGA
 9  COMPONENT_OBJEXCLUDE += src/fpga_overrides.o
10  endif
11  
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))