GNU Compiler Collection: Difference between revisions

No edit summary
 
 
(8 intermediate revisions by 4 users not shown)
Line 1:
{{Compiler}}[[Category:Encyclopedia]]The '''GNU Compiler Collection''', or '''GCC''', is a multilanguagemulti-language compiler supporting multiple target architectures. As of version 4.1, the main branch includes support for [[Ada]], [[C]], [[C++]], [[Fortran]], [[Java]], [[Objective-C]], and [[Objective-C++]]. Support for other languages is possible through the creation of a compiler front-end.
 
==Basic Usage==
Line 5:
Any of GCC's supported languages may be compiled through the simple command-line construct:
<pre>gcc (source-file)</pre>
However, some languages depend on the [[link time|linking]] of libraries, such as C++'s [[Standard Template Library]], to reach their full potential. In GCC, one way to include the STL is to change the way the compiler is called:
<pre>g++ (source-file)</pre>
In the above two examples, GCC will produce a binary file named '''<tt>a.out'''</tt>, barring any [[compile time|compile-time errors]] errors. This is the executable form of the code compiled. If it is preferable to have a binary of a different name, and it usually is, one can use the '''<tt>-o'''</tt> command-line option:
<pre>gcc (source-file) -o mybinary</pre>
''or''
<pre>g++ (source-file) -o mybinary</pre>
These example behaves the same as their sibling examples, with the exception that they create a binary named '''<tt>mybinary'''</tt> instead of '''<tt>a.out'''</tt>.
 
==See Also==
* [http://engcc.wikipediagnu.org/wiki/GNU_Compiler_Collection Wikipedia:GCC GNUofficial Compilerhome Collectionpage]
* [[wp:GNU Compiler Collection|GNU Compiler Collection on Wikipedia]]
* [http://gcc.gnu.org/onlinedocs/ GCC Documentationonline documentation]
* [http://gcc.gnu.org/install/binaries.html An incomplete list of third-party binary distributions] for systems that don't already have a compiler installed.
* [http://mingw.org/ MinGW], a widely-used port of GCC to [[Windows]]
* [https://mingw-w64.org MinGW-w64], a popular fork of MinGW that adds Win64 support and additional tools and APIs
* [http://tdm-gcc.tdragon.net/ TDM-GCC], another Windows port (not listed in the third-party distribution page above)
* [http://www.delorie.com/djgpp/ DJGPP], a widely-used port of GCC to [[DOS]]
Anonymous user