-
Notifications
You must be signed in to change notification settings - Fork 178
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 under Arduino ESP8266? #550
Comments
@dimonomid could you address it please? |
I've found that I can compile this using the feature/libc branch of Arduino ESP8266, after adding the putc.a symbols back into the libcmin build. Compilation and linking now work with CS_DISABLE_STDIO and V7_BUILD_PROFILE 1, however I get a crash on v7_create(). |
So the stack trace gives me this:
Looks like an issue in calloc, not sure how to proceed from here. Anyone else had any luck compiling under ESP8266 Arduino? |
Manually add the esp8266 arduino board support (follow the instructions here: https://github.com/esp8266/Arduino#using-git-version) instead of using the board manager from the arduino ide ... |
Trying to build this in the Arduino IDE, and with Platform.io, for an ESP8266.
I brought the two v7 files in, set CS_PLATFORM to CS_P_ESP_LWIP and CS_BUILD_PROFILE to minimal. But I get an undefined reference to 'ctype_ptr' error.
Seems we're missing a bunch of stdio functions, fprintf, and setjmp as well. Any ideas how to go about fixing this?
The text was updated successfully, but these errors were encountered: