I'm trying to port a Linux app to windows. Nothing huge, just a small command line utility. However, the last time I worked with C in Windows, it was a 'hello world' app in Visual Studio 6.

I'm trying to avoid meeting a new IDE, so I'd like to use Netbeans' C/C++ plugin. I just need a compiler.

Can anyone suggest a free 32-bit compiler that doesn't come with an IDE attached?

link|improve this question

43% accept rate
feedback

9 Answers

up vote 32 down vote accepted

Check out the MinGW compiler tools. It's free and lets you use GCC natively on Windows. From the website:

MinGW provides a complete Open Source programming tool set which is suitable for the development of native Windows programs that do not depend on any 3rd-party C runtime DLLs.

What's so cool about mingw is that you can quite easily cross-compile working Windows binaries from another system — e.g. Linux, Mac OS X etc.

link|improve this answer
3  
The official MinGW builds of GCC are based on an older version (3.4, I think.) You might consider these more current builds instead: tdragon.net/recentgcc , though unfortunately MSYS (required by NetBeans) isn't included and I don't know how well vanilla MSYS works with these builds. – Michael Ratanapintha Jan 1 '09 at 22:02
feedback

The Windows SDK has a perfectly fine compiler. Since you will need the SDK most likely anyway, why not just use that compiler? You can find it usually in C:\Program Files\Microsoft SDKs\Windows\v6.0\VC\Bin (the compiler is called cl.exe, the linker link.exe)

link|improve this answer
Good point. I'd forgotten cl.exe actually comes with the Windows SDK. This seems like an obvious choice. – jalf Dec 29 '08 at 19:58
3  
NetBeans's C++ plugin sadly does not support the MSVC toolchain, so CL.EXE from WinSDK won't work for the OP. – Michael Ratanapintha Jan 1 '09 at 22:03
2  
I have to download more than 1GB to have a compiler? WTF? – blaxter Jul 28 '09 at 11:34
2  
No, you have to download more than 1 GB to have the SDK needed for Windows development in general. It just so happens to contain a compiler as well. – jalf Dec 8 '09 at 2:27
feedback

Microsoft's VC++ compiler is by far the most common (and definitely one of the best) compilers on Windows. It comes with an IDE, but you don't have to use it. You can easily use the compiler (cl.exe) from the command line.

Alternatively, there's MinGW, a port of GCC.

link|improve this answer
feedback

Just to be different.

There is openwatcom and LCC. Though they come with IDEs attached, they are also usable from the commandline.

link|improve this answer
+1 for lcc. There might be better options but it the GUI feels like a glorified notepad. For those who like a minimal GUI/debugger-- go with lcc (cs.virginia.edu/~lcc-win32). – RLH Aug 10 '11 at 14:19
feedback

Since no-one has mentioned Cygwin before me, I will. I use that; it works pretty well. I also have the MS VC++ 2008 (free download) edition installed; I don't often use it.

link|improve this answer
feedback

Setting up MinGW in Windows can be a bit daunting (I tried it). Afaik MinGW only supports gcc v4 in beta. You can try it anyway. If you need an IDE for it, try Eclipse.

Personally, I'd however recommend Microsoft Visual C++ Express Edition 2008, which comes free of charge. It only lacks a few tools (e.g. resource compiler) you may not need anyway when porting from another OS.

link|improve this answer
feedback

You may also look at:

The free country: C / C++ Compilers

link|improve this answer
feedback

DMC by digitalmars

link|improve this answer
feedback

Be aware that when using cygwin c++ compilers, you can't move those apps to another computer, unless they also have the cygwin.dll s.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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