Forums » Software Development »
Is it possible to use C++ 11?
Added by Vadym Kolesnyk over 2 years ago
I would know is it possible to apply the c++11 standard during development?
Replies (3)
RE: Is it possible to use C++ 11? - Added by Michael Williamson over 2 years ago
Hi Vadym,
Yes. Are you referring to the DSP programming or the ARM programming?
For the ARM, the version of GCC in the 2018 toolchain is 4.8.3. According to this page, all of the c++11 standard is supported except garbage collection / leak detection.
If the DSP, the latest version of the compiler should support up to c++14.
Does this help?
-Mike
RE: Is it possible to use C++ 11? - Added by Vadym Kolesnyk over 2 years ago
Hello Mike,
That's exactly what I wanted to know. Thank you very much for your prompt reply
RE: Is it possible to use C++ 11? - Added by Jonathan Cormier over 2 years ago
Also, Make sure to add the "-std=c++11" flag to the g++ compiler to actually enable c++11 features.