vote up 6 vote down star
4

What would be a good alternative to Visual Studio ?

Free or non-free, but a free program definitely makes a better choice.

So what do you guys use ? If anything like that exist...

flag
1. Why lighter than VS? 2. What do you mean with 'lighter' – seeker Sep 18 '08 at 4:24
what I meant is that I don't want to install all those tools bundled up with VS that I never use. I want something more like a programming environment ready in seconds. – Robit Sep 18 '08 at 4:48

23 Answers

vote up 18 vote down check

By "Editor, Compiler, Debugger", I'm taking you want an IDE:

Multi-Platform

Microsoft Windows

link|flag
Good and comprehensive list ! thanks ! – Robit Sep 18 '08 at 4:43
"Emacs is a great operating system, shame it doesn't have a decent editor". I keeed! :') – Bernard Sep 18 '08 at 9:41
For Windows there's also Bloodshed Dev-C++, based on MinGW (gcc) bloodshed.net/devcpp.html – bart Nov 9 '08 at 11:27
Dev-C++ is no longer maintained, use wxDev-C++ if you want to use that particular IDE, which is an update of Dev-C++, with added support for wxWidgets designer. – KTC Nov 9 '08 at 11:58
Why is netbeans under Windows-only? I'm pretty sure it works fine on other platforms as well, as it just uses gcc. – Herms Nov 18 '08 at 21:35
show 1 more comment
vote up 1 vote down

http://www.caerwyn.com/acme/

/me using acme in plan9port/linux

HTH

link|flag
vote up 0 vote down

CodeLite is a free, powerful, cross platform and open source IDE for C/C++ programming. It can import MSVS workspace/projects and convert them to use a GNU-based makefile. IMO it's much better than Code::Blocks.

link|flag
vote up 0 vote down

When I'm not using Visual Studio, I tend to use Dev-Cpp. Someone's even made a portable version you can carry on your thumbdrive. (Try doing that with Visual Studio :-) Plus I think it's good to not be locked down to one IDE.

link|flag
vote up 0 vote down

I also have used Visual SlickEdit, it allows for tagging and you can configure the crap out of it, color coding datatypes and tagging different file types was excellent and very helpful too been awhile since i used it though

link|flag
vote up 0 vote down

Code::Blocks, an easy choice. I use it with Qt4,

link|flag
vote up 0 vote down

SlickEdit has very good C++ support. It is an editor-cum-Swiss-Knife, it has refactoring support for C++ and strong navigation functionality, among other things.

link|flag
vote up 1 vote down

codeblocks is ALOT better then devc++ which was is (a) an abonded project and (b) chokes on compiling non simple stuff. they both use the same compiler, cygwin, but c::b is much much better to use.

link|flag
vote up 1 vote down

I tested most of the IDEs above and I must say that for me Code::Blocks was the best.

link|flag
vote up 0 vote down

If you’re prepared to get your hands dirty tweaking command lines and writing make files then Zeus can be configured to be a lightweight C/C++ IDE.

Zeus also has the option to import MSVC solution and workspace files and once imported the project/workspace will build inside of Zeus.

link|flag
vote up 1 vote down

Dev-C++ is a good stand alone compiler debugger (a big plus is it has syntax completion).

Aside from that its always good to grab a good text editor (contex, notepad2 or maruo) and use command like tools from either Microsoft, Borland or whatever.

  • Some text editors (context) support command line tools integration, so the text editor become a mini ide.
  • It might be a good idea to write some batch scripts to automate compilation and linking.
link|flag
vote up 1 vote down

Use NMake, cl.exe, link.exe (all installed by Visual Studio) and Emacs (or vim, Notepad++, etc.)

Better yet, add CMake so that you can create cross-platform build descriptions.

link|flag
vote up 0 vote down

Firstly, as an aside, why the aversion to visual studio? There's always Visual Studio Express, which I believe is free.

That said, you could use something like pspad which offers a pretty good project view, and lets you hook into the compiler of choice. As an example, with the microsoft sdk installed you've got access to msbuild and the other build tools offered by the sdk. Not sure how you'll go debugging but it'll get you building stuff.

I guess another option is cygwin with all the gcc bits installed.

Having said that, it's not clear what sort of project you are trying to build so it's a little difficult to offer correct advice. Horses for courses as they say.

link|flag
never said I had an aversion to visual studio, I'm just looking for something more portable. – Robit Sep 18 '08 at 4:37
Ahh, ok, fair enough. – Lou Sep 18 '08 at 5:24
portable? And saying 'on Windows' in title? Hmmm... – sundar Nov 9 '08 at 11:02
vote up 0 vote down

Both Netbeans and Eclipse provide C++ support. Netbeans out-of-the-box and Eclipse in the form of a plugin.

link|flag
vote up 1 vote down

Eclipse. www.eclipse.org

May not be what you call Light Weight...

link|flag
vote up 1 vote down

As Bernard has stated, you can just use the command line tools on their own from your Visual Studio installation. You may need to install a Windows SDK to be able to build native Win32 programs.

All installations of Visual studio that I know of install a shortcut link to open a command prompt window that has all of the environment variables set correctly to build. As far as I recall all you need is the appropriate PATH, INCLUDE, and LIB environment variables set.

link|flag
vote up 2 vote down

C++ Builder

link|flag
vote up 1 vote down

Notepad++, g++, gdb?

link|flag
vote up 3 vote down

Does Visual C++ Express count as lighter than Visual Studio?

link|flag
I can't notice any difference, myself. – Bernard Sep 18 '08 at 4:18
vote up 3 vote down

How about Windows SDK, any old text editor, and Debugging Tools for Windows?

link|flag
vote up 0 vote down

I hear good things about E, and I love TextMate which it is very similar to.

link|flag
vote up 3 vote down

Dev C++, it's lighter weight, and still have breakpoint debugging.

link|flag
vote up 3 vote down

You can always use the command line tools, and choose an editor of your preference. I like Vim, but there are ones like Notepad2, Notepad++. I'm more of a Linux guy, so someone else will recommend a few good editors, I'm sure.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.