As in title. Will it be default or to use C++11 features we will always have to add -std=c++11
?
Right now, because of this option, C++11 still feels like some extra, non-standard thing.
To specify compiler, -std=c++11
flag is used by clang, g++ and even ICC.
With g++, use
-dumpspecs
to generate aspecs
file. Use-print-search-dirs
and first line is where to placespecs
file. Add the-std=c++11
option appropriate place inspecs
file, on the line following*cc1plus:
.