Could anyone suggest a free C++ IDE that works on Vista please? I used to use Bloodshed but it doesn't work on Vista. Tried NetBeans but it requires me to have my own compilers. Thank you.
This is a discussion on C++ Ide within the A Brief History of Cprogramming.com forums, part of the Community Boards category; Could anyone suggest a free C++ IDE that works on Vista please? I used to use Bloodshed but it doesn't ...
Could anyone suggest a free C++ IDE that works on Vista please? I used to use Bloodshed but it doesn't work on Vista. Tried NetBeans but it requires me to have my own compilers. Thank you.
VS Express?
Thanks zacs7. I didn't know that it's free. Will give that a try.
Code::Blocks doesn't work on Vista?
"The Internet treats censorship as damage and routes around it." - John Gilmore
Thanks Maxorator. I haven't heard of Code::block before. Yeah according to their web site it works on Vista. Do you know if I need to download a compiler separately? They mention that they support multiple compilers so it looks like I will have to supply one myself. Thank you.
They have the MinGW port of GCC bundled as an option.Do you know if I need to download a compiler separately?
Personally, though, I find it quite easy the install the MinGW port of GCC using the installer, so having to install it separately should not be an obstacle anyway.
C + C++ Compiler: MinGW port of GCC
Version Control System: Bazaar
Look up a C++ Reference and learn How To Ask Questions The Smart Way
DevC++ will work onVista. Having it in the Program Files directory causes some issues tho. You have to give the dev c++ folder read, write and exeute permissions. If you have dev c++ installed you will also have g++ which you can get netbeans to use to compile your code.
eww netbeans is weak sauce. Go for VS Express or Code::Blocks. Both are great IDEs and are free.
Thanks so much everyone. I finally decided to install Visual C++ express... just need to figure out how to use it now =)
If you aren't writing Windows projects, you might get away with disabling the language extensions in the project settings (and turn up warnings to max, as well!), and you should get closer to standards compliant code.
For information on how to enable C++11 on your compiler, look here.
よく聞くがいい!私は天才だからね! ^_^
> and you should get closer to standards compliant code.
Or at least some twisted Microsoft version![]()
Well, the closer to the standard, the better, and that's what counts, right?![]()
For information on how to enable C++11 on your compiler, look here.
よく聞くがいい!私は天才だからね! ^_^
The latest Microsoft compilers are very standards compliant. You just have to make sure you aren't using their extras (it isn't that hard, just start with an Empty Project). The same applies to gcc. If you want standard and portable code you have to avoid using their extensions.