LinuxCommandLibrary

cc

TLDR

This command is an alias of gcc.

SYNOPSIS

cc [options] files...

DESCRIPTION

cc is traditionally the system C compiler command. On most Linux systems, it is a symbolic link or alias to gcc (GNU Compiler Collection).
Using cc in build scripts provides portability across systems where different compilers may be the default.

SEE ALSO

gcc(1), clang(1), make(1)

Copied to clipboard