简体   繁体   中英

Unrecognized command line option “-std=c++11” c++ in Netbeans 7.2

I am trying to use C++11. After sifting through the internet I found that all I have to do is right click on my project -> properties and under the "C++ standard" select c++ 11. When I run the program with C++ 11, I get this error "unrecognized command line option -std=c++11 . One solution people have said is to add -g -std=c++0x in the "Additional Options" but then I get "unrecognized command line option -std=c++0x . I have downloaded gcc-4.7.1.tar.gz but I have no idea what to do with it.

Does anyone know how to get rid of this error or know how to make net beans compile with c++11?

bump your gcc version to 4.7+. c++0x is supported since gcc4.3 while c++11 is supported since gcc4.7

Steps to configure through Netbeans IDE:

  1. Right click on project and goto properties
  2. Go to Build -> C++Compiler
  3. In right hand side panel there are few options go to Basic options -> C++ Standard change its value from C++ 11 to C++ 98

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM