|
Re: Eclipse Build Issues
At least on Linux, the example projects pass --std=c++1y to g++ already, which enables the ISO C++ 2014 standard (which is a superset of C++11). If it isn't enabled, do the following:
In the project's right-click context menu, navigate to Properties > C/C++ Build > Settings, then select "Cross G++ Compiler". The language standard under Dialect should be ISO C++1y.
|