我已经尝试过了:
g++ -std=c++11 my_file.cpp -o my_prog
g++ -std=c++0x ...
g++ -std=gnu++0x ...
我不断收到这条消息:
error: unrecognized command line option
答案 0 :(得分:5)
从那里你可以看到支持C ++ 11,因为gcc 4.7和gcc 4.4支持C ++ 0x。
引自Status of Experimental C++0x Support in GCC 4.4:
GCC为即将推出的ISO C ++标准提供实验支持, 的C ++ 0x。可以使用-std = c ++ 0x或-std = gnu ++ 0x启用此支持 编译选项;前者禁用GNU扩展。
因此它应该与-std=c++0x
或-std=gnu++0x
一起使用。
答案 1 :(得分:1)
目前尚不清楚您的问题是什么:
[11:51am][wlynch@apple /tmp] cat /etc/redhat-release
CentOS release 6.5 (Final)
[11:51am][wlynch@apple /tmp] g++ -v
Using built-in specs.
Target: x86_64-redhat-linux
Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-languages=c,c++,objc,obj-c++,java,fortran,ada --enable-java-awt=gtk --disable-dssi --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-1.5.0.0/jre --enable-libgcj-multifile --enable-java-maintainer-mode --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --disable-libjava-multilib --with-ppl --with-cloog --with-tune=generic --with-arch_32=i686 --build=x86_64-redhat-linux
Thread model: posix
gcc version 4.4.7 20120313 (Red Hat 4.4.7-4) (GCC)
[11:51am][wlynch@apple /tmp] g++ -std=c++0x simple.cc
[11:51am][wlynch@apple /tmp]