Gcc is the GNU C/C++ compiler, a popular open source compiler used on Linux and other platforms. It can compile C, C++, Ada and other languages. Gcc performs preprocessing, compilation, assembly and linking. Common gcc options include -c to compile only, -o to specify the output filename, -g for debugging symbols, and -Wall to show warnings. The -c option compiles to an object file without linking, while -o overrides the default output filename.
Related topics: