Replies: 1 comment
-
Yes, indeed our libstdc++ is from an older version than GCC14 (I think even as old as GCC10). I would be very appreciative if the crosstool-ng generated library would just work for AVR, can you test it out by replacing the avr-libstdcpp with a new one? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
After using ETL a long time on AVR I wanted to replace some
etl::
with more standard C++. So I found avr-libstdcpp.Using Microchip/Arduino
avr-gcc-7.3
+ETL
+avr-libstdcpp
my code already started to look like its normal C++.Doing some tests with Zak Kemble's avr-gcc-15.2 I'm starting to get errors with
modm-io avr-libstdcpp
.Yesterday I used
crosstool-ng
to build me aavr-gcc-15.2 + libstdc++
giving me the following headers:So now my idea: Replace
avr-libstdcpp
with the one provided byGCC
, instead of a custom gcc build script, callct-ng avr
Wouldn't this require less maintenance and be more future proof?Beta Was this translation helpful? Give feedback.
All reactions