문제

I am using Eclipse with the winGW compiler (gcc version 3.4.5). I need to use some C++11 features, I have been following several answers to similar questions such as this one, but it does not work in my case. Eclipse says:

cclplus.exe: error: unrecognized command line option "-std=c++0x"
cclplus.exe: error: unrecognized command line option "-std=c++11"

Does this version of minGW supports C++11?

도움이 되었습니까?

해결책

According to this documentation, the earliest GCC version that supports any C++11 features is version 4.3. The latest MinGW version is 4.8.1, but your version will indeed not support any C++11 features.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top