vote up 2 vote down star

can anyone tell me what gcc is?? and wts are its advantage over other compiler like turbo c and visual c

flag
It's the GNU Compiler Collection. – Brad Gilbert Aug 21 at 18:45
3  
You would probably get better information for this on SO. – EBGreen Aug 21 at 18:45
This is one case where going to the web site: gcc.gnu.org will give you more and better information than SO can – Neil Butterworth Aug 21 at 19:10

migrated from superuser.com

6 Answers

vote up 6 vote down

The GNU Compiler Collection is an open source (GPL) compiler. It's found on a wide variety of systems, ranging from GNU/Linux to every flavor of Unix, to Windows.

GCC contains support for many languages (C, C++, Fortran, to name bug a few). It's highly portable, and widely used, and tends to produce good code. It can also be used as a cross-compiler (compiling for a system other than the one running GCC).

It's the default compiler choice for most Unix-type systems because most vendors don't bother to write their own compilers anymore - GCC is just too good for general use.

Under Windows, Microsoft's own dev tools are often preferred because they get support for new technologies quicker.

In high-performance programming environments (and some embedded environments) you may want a compiler that's more highly tuned to the chip/system in question.

link|flag
vote up 3 vote down

The GNU Compiler Collection are the compilers used in GNU/Linux systems. I don't know that they compete with Turbo C or Visual C, which I think only run on DOS/Windows systems.

The main advantage to a user is that GCC can be installed on (and is sometimes distributed with) nearly every GNU/Linux system and can be used to build packages that are distributed as source.

I'm sure there are advantages that programmers would recognize, but maybe that's a topic for stackoverflow.com.

[Edit] Now that this question has been migrated, see Michael Kohne's answer for some advantages to programmers.

link|flag
is this gcc compiler compatible with windows based operating system – Himjones Aug 21 at 18:56
I know that you can use gcc via cygwin. I think there is a win23 port but I can't remember for sure. – EBGreen Aug 21 at 18:58
2  
Look at mingw, mingw.org – bstpierre Aug 21 at 19:01
Another advantage is that it's more than just C and C++. How big an advantage this is depends entirely on the person using it. – David Thornley Aug 21 at 19:05
vote up 1 vote down

Big advantage of gcc over Turbo C and Visual C: it's free!*

And it's ubiquitous, especially on the various *nix environments. You can use it on Windows via either cygwin or MinGW. It compiles a truly staggering number of languages (C, C++, Ada, Java, Fortran, Objective-C), and supplies an intermediate language for Haskell.

It has been used for industrial-strength projects for decades now, so you're pretty safe with it.

*(Though, in all fairness, Microsoft does offer Visual C++ Express for free, though it is not open source.)

link|flag
Turbo C is free as well (from the Borland museum) - it's just hideously out of date. – paxdiablo Aug 22 at 9:24
vote up 0 vote down

The GCC collection is open source. This allows it to be ported to MANY different platforms rather quickly because so many people work on it and have seen how it works. Commercial compilers usually are closed-source, and such only one company or consorsium can do the porting, which can be time-consuming.

link|flag
vote up 0 vote down

The real true advantage of gcc over turbo C and visual C is it's availability on platforms other than Windows, and it's ability of building cross-platform binaries, meaning you can set up a build tool chain to build windows binaries on a linux box with gcc, or you can set up a similar tool chain to build some arm binaries on an intel box, which is definitely nice since you might not have as much power in your arm device as you might have in you development rig. With visual c compiler and turbo c compiler that's close to impossible.
A nice bonus to all that - gcc is open source and free.

link|flag
vote up 0 vote down

Whereas GCC started as GNU C Compiler, it is now GNU Compiler Collection, as it has compilers for C, C++, Java, Fortran among others. Why would you want to use it? Because its better. Better, because:

  1. Once you have written your code using the GCC compilers, you are assured that your code will work on a lot of other OSs/platforms/architectures. You will be able to do a lot more in and with your programs than you would do in Turbo C, which is pretty much tied to Windows.
  2. GCC is used by all of those projects out there in the wild. Having some experience with GCC is definitely a great plus when you are moving to some serious programming.
  3. and its just good karma :)
link|flag

Your Answer

Get an OpenID
or

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