We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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!
The text was updated successfully, but these errors were encountered:
Hi, for clean build I needed EXCLUDE_COMPONENTS := esp_http_server esp_https_server protocomm
EXCLUDE_COMPONENTS := esp_http_server esp_https_server protocomm
Sorry, something went wrong.
Merge pull request donny681#5 from jjsch-dev/idf_41
a35824d
Idf 41
No branches or pull requests
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!
The text was updated successfully, but these errors were encountered: