-
-
Notifications
You must be signed in to change notification settings - Fork 6.5k
New issue
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
Compilation for ESP32 on XTENSA architecture #1598
Comments
does it build ok with that change, are the type sizes in that section correct for your platform? |
fixed in ceff21a |
I'd still like to know if this was actually tested on that platform. That section assumes sizeof long is 4 which may not be right |
I had a number of ESP32 users test the suggested change and so far so good. See: |
ok. on your platform is sizeof(long) 4 or 8 |
On the ESP32 device, sizeof(long) evaluates to 4 bytes. |
ok. thanks for clearing that up |
In the current build environment for libcurl, we find the file called:
curl/include/curl/system.h
contains environmental definitions. In my environment, I wish to build on the ESP32 MCU which uses the XTENSA chip set/architecture. GCC on this environment supplies the pre-defined macro called
__XTENSA__
. This issue requests a change of the source insystem.h
from this:and change to:
The text was updated successfully, but these errors were encountered: