More up-to-date GCC for the Cyclone V SoC ARM available?
I'm building an application for a Cyclone V SoC, using OpenCL to program the FPGA and running the CL host application on the ARM under Linux. To compile my host application I use the GCC toolchain shipped with the EDS.
However, the GCC coming with the EDS in 2019 is version 4.8.3 from 2014 missing a lot of recent C++ features - I just got sucked by a missing C++11 (!!) feature. Its absolutely needed to support C++11 for my project, its highly desirable to be able to use some third party libs that depend on C++14 and it would be nice if I could use code from my own codebase using some bits of C++17.
Is it possible to get a more up-to-date GCC for the ARM (clang would be fine too)? Do I have to expect any compatibility issues when using a newer GCC version for the Cyclone V SoC's ARM?
Any hints would be greatly appreciated