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?
gcc --version
. – Whitfieldgcc-4.7.1-obj
where you havegcc-4.7.1
(the extracted source), andcd gcc-4.7.1-obj
. Then you run../gcc-4.7.1/configure
(adding whatever options are necessary), followed bymake bootstrap
. It is a good idea to log the build. – Whitfield