ESP32_CAMERA_QR icon indicating copy to clipboard operation
ESP32_CAMERA_QR copied to clipboard

http_server component conflict on build *workaround*

Open edgarmove opened this issue 5 years ago • 1 comments

Hi, on the latest IDF I saw a lot of errors trying to compile, all related to the http server.

I assume that it is a conflict with the espressif http server component with the custom http server of your code.

Just for someone else experimenting this issue, my unelegant workaround was to exclude the Espressif libraries in the Makefile:

EXCLUDE_COMPONENTS := esp_http_server protocomm

It builds now.

Thanks for your work!

edgarmove avatar Nov 06 '18 18:11 edgarmove

Hi, for clean build I needed EXCLUDE_COMPONENTS := esp_http_server esp_https_server protocomm

JiriBilek avatar Jan 02 '19 19:01 JiriBilek