You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 1, 2024. It is now read-only.
I tried using STLPort instead of the StandardCplusplus dependency and got it down to fewer errors(available as a pastebin) with these changes to work on the ARM Teensy 3.1. Note: I am not certain that these modifications to STLPort are correct.
In stlport/stl/config/_system.h:
Add at around line 195 (copied from avr case:
#elif defined(__arm__)
# include <stl/config/_avr.h>
# ifdef __GNUC__
# include <stl/config/_gcc.h>
# endif
# undef _STLP_USE_NEW_C_HEADERS
In stlport/stl/config/features.h:
Add the following next to the avr case at around line 165 so it uses little endian:
|| defined (__arm__)
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Running the barebones snippet below results in a huge list of compile errors(available as a pastebin)
I am wanting to eventually run a basic setup like this.
I am running on Arduino 1.0.6 and Teensyduino 1.20 which is an add-on for the Teensy boards (using Teensy 3.1)
The text was updated successfully, but these errors were encountered: