component.mk 401 B

1234567891011
  1. SOC_NAME := $(IDF_TARGET)
  2. COMPONENT_SRCDIRS := .
  3. COMPONENT_ADD_INCLUDEDIRS := include
  4. COMPONENT_PRIV_INCLUDEDIRS := private_include port/include
  5. COMPONENT_ADD_LDFRAGMENTS += linker.lf
  6. include $(COMPONENT_PATH)/port/soc/$(SOC_NAME)/component.mk
  7. # disable stack protection in files which are involved in initialization of that feature
  8. startup.o: CFLAGS := $(filter-out -fstack-protector%, $(CFLAGS))