Page 1 of 1

Path issue while upgrading to ESp32 V3.3 version

Posted: Wed Sep 25, 2019 5:43 am
by giksonca
I had been using ESP IDF 3.2 version for my project I was using EXTRA_COMPONENT_DIRS variable for adding my project related paths like below in Main Makefile & using component files in each folder for getting it compiled.

EXTRA_COMPONENT_DIRS += $(PROJECT_PATH)/project/Code/BF
EXTRA_COMPONENT_DIRS += $(PROJECT_PATH)/project/Code/Lib
EXTRA_COMPONENT_DIRS += $(PROJECT_PATH)/project/Code/OS
EXTRA_COMPONENT_DIRS += $(PROJECT_PATH)/project/Code/NV
include $(IDF_PATH)/make/project.mk

But after upgrading V3.3 its shows compilation issue with some of the files not found error .Which means it's not getting compiled same way as old IDF v3.2 . Can anyone pinpoint what can be the issue here ?

Re: Path issue while upgrading to ESp32 V3.3 version

Posted: Wed Sep 25, 2019 6:45 am
by giksonca
This issue got solved. I was missing one subfolder under BF(Config) in Makefile. But it is strange that was including automatically with V3.2 without this inclusion!.

EXTRA_COMPONENT_DIRS += $(PROJECT_PATH)/project/Code/BF
EXTRA_COMPONENT_DIRS += $(PROJECT_PATH)/project/Code/BF/config