vote up 4 vote down star

If possible I want one that's free, popular (so support on forums will be faster) and.... just good. I don't really know much about compilers so I don't know what exactly is good.

flag

50% accept rate
For what platform? – David Thornley Oct 9 at 17:02

10 Answers

vote up 21 vote down check

Please note that I have taken the below stuff from Link :http://cplus.about.com/od/glossary/a/compilers.htm

I have coped relevant things here for more detail you can visit link directly

  • Microsoft Visual C++ 2008 Express.

  • Linkfrm.

  • Turbo Explorer for C++.

  • GCC (GNU Compiler Collection)

  • Digital Mars C/C++ Compiler

link|flag
Embarcadero killed the Turbo Explorer for C++. There is no more, they have only links to the trial version of C++ Builder. Such a shame. – Cristian Adam Oct 9 at 14:53
@cristian , Thanks for info – singh Oct 9 at 15:14
4  
It's not clear that you're copy-pasting an article. You should acknowledge your source more clearly. – anno Oct 9 at 16:54
Given that the question didn't specify OS, I'd like to see some indication of which are Windows-only and which aren't for all compilers, not just three. Also, some of the wording doesn't make sense in this context. – David Thornley Oct 9 at 17:05
Thanks all for your comments, I will learn from experience – singh Oct 10 at 6:10
vote up 17 vote down

I guess you want the GNU C++ Compiler from the GNU Compiler Collection.

link|flag
vote up 1 vote down

You could try the GNU Complier Collection, it includes C++, C, Objective-C, Java and a bunch of others. Its free, its open source, its highly popular, you can get it for almost any platform, and its commonly used as a base for popular IDE's.

gcc.gnu.org

link|flag
vote up 3 vote down

Try the GCC (GNU Compiler Collection) C++ compiler.

link|flag
Just wanted to clarify for peeps who may not know, that GCC == GNU Compiler Collection - ie they are one and the same. – thomasrutter Nov 17 at 11:26
vote up 5 vote down

You don't mention what platform you're using, but the Microsoft Visual C++ Express Edition is free and popular.

link|flag
And windows only :). – LiraNuna Oct 9 at 20:10
That's implied by being from Microsoft. :) – Greg Hewgill Oct 9 at 21:10
I hear it works well in WINE... – Charlie Somerville Oct 10 at 5:59
So? GCC (4.4 at least) is still superior – LiraNuna Oct 10 at 6:19
vote up 3 vote down

Try one of these:

All the above are open sourced.

link|flag
vote up 1 vote down

It looks like you just need to use Microsoft Visual C++. It works very well, creates fast code and it is widely discussed on forums. Then you can go further with Microsoft Visual Studio.

link|flag
vote up 2 vote down

Dev C++ bloodshed from boorland, is easier to use than Microsoft Visual C++ and it shouldn't take more than 5 minutes to understand the user-interface.

Dev-C++ 5.0 beta 9.2 (4.9.9.2) (9.0 MB) with Mingw/GCC 3.4.2

link|flag
vote up 0 vote down

I like the dev c++ because you can compile a single c++ file without first needing to make a whole new project and include it. fairly easy to use imo

link|flag
True also of the GCC (GNU compiler collection) and its Windows port MinGW. But you can also use pretty powerful build systems with it once your project gets large so it scales well. – thomasrutter Nov 17 at 11:31
Oops just realised that Dev C++ is based on MinGW. I'll shut up now! – thomasrutter Nov 17 at 12:02
vote up 2 vote down

The Intel C++ compiler is available for free on Linux for non-commercial use. Generates highly optimized code and can even auto-vectorize/parallelize suitable code.

Based on my experience, it generates considerably faster code than GCC (4.3) and MS VC++ 2008

link|flag
"free for non-commercial use" sounds fishy to me - how does that work? Can they enforce license conditions based on whether you sell the resulting software? If so looks like it would not be possible to use either for open source (well GPL at least which doesn't allow such restrictions) or for commercial software either - only for freeware. – thomasrutter Nov 17 at 11:30
@thomasrutter - you are probably right. however, you could write a package (something like fftw) that you distribute as GPL, but provide comparative benchmarks when built with icc. whoever uses it has the option to use icc to build it if they wish. FWIU, GPL only applies to the source, not the compiler used to build the source. i guess you could have your source distributed as GPL and provide a prebuild binary for anyone who wants to use it for non-commercial purposes. would this work? – Gautham Ganapathy Nov 18 at 14:38

Your Answer

Get an OpenID
or

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