I am trying to make use of C++0x on Helios Eclipse.
I followed the instructions from here:
Eclipse CDT C++11/C++0x support
They won't work.
When I use make -f makefile (in the Debug directory), I get the error:
g++ -O0 -g3 -Wall -c -fmessage-length=0 -std=c++0x -MMD -MP -MF"cnfo.d" -MT"cnf_io.d" -o"cnfo.o" "../cnfo.cpp"
cc1plus: error: unrecognized command line option "-std=c++0x"
I am using MacOSx. I re-installed xcode just now, with the latest version. g++ --version gives:
# g++ --version
i686-apple-darwin11-llvm-g++-4.2 (GCC) 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.11.00)
Copyright (C) 2007 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
I didn't change anything in my project settings other than what it said above in the StackOverflow link.