https://github.com/espressif/crosstool-NG
Is there any way for me to use a more modern version of GCC via Espressif's crosstool-NG, or are there considerations by Espressif to update to a new version of GCC, specifically with much better C++17 functionality?
For example, I am working on a project and want to use functionality like string_view and structured bindings so I can do stuff like this to drastically clean up my code. Not to mention the massive improvements to templates, and constexpr-if.
Code: Select all
auto [x,y] = Point(4,2);