Does the linux sdk 6.0 c++ cross compiler (AM335x) support C++11? If yes how to enable it?
Ifti
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hi,
Included in the latest SDK is the Linaro GCC toolchain 4.7 with c++ support enabled (check the output of arm-linux-gnueabihf-g++ -v). Judging by this page, C++11 should be supported in version 4.7.
Specifying a -std=c++11 option when compiling should tell the compiler which standard to follow.
Best regards,
Miroslav