Hello,
I’m currently consider to use VisualGDB as means to develop our code more efficiently and such that it compiles under windows AND linux. So far I have done the following:
- download VisualGDB 5.0 Preview 3 and installed it
- Setup Samba so that I can access to the c++ src directory on the remote machine
- Start Linux Project wizard and import my sources. (I use cmake as a build system under linux, but somehow I couldn’t select this in the project wizard. Therefore VisualGDB thinks I’m using make files which however also works…)
- Configure all the settings and at the very end it asked me whether I wanted experimental clang intelli sense, i’ve chosen yes.
- Open a c++ source file and on one of the very first lines I get the clang warning “Alias declarations are a c++11 extension”
To me it seems that the new (experimental) clang intelli sense doesn’t tell clang that my code uses c++11. How can I fix this?
Raffael