Search found 1 match

by Damion7
Fri May 04, 2018 8:34 pm
Forum: ESP-IDF
Topic: How to include static librarys into esp-idf with eclipse?
Replies: 3
Views: 7906

Re: How to include static librarys into esp-idf with eclipse?

I ran into the same issue with libalgobsec.a using command line tools (no eclipse). Were you able to resolve this issue? I added the following lines to my component.mk: COMPONENT_ADD_INCLUDEDIRS := ./lib COMPONENT_ADD_LDFLAGS = -L$(COMPONENT_PATH)/lib/ -lalgobsec -l$(COMPONENT_NAME) This the error I...