LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

cc

system C compiler

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.

INSTALL

sudo dnf install gcc
copy
sudo pacman -S gcc
copy
sudo apk add gcc
copy
sudo zypper install gcc
copy
brew install gcc
copy
nix profile install nixpkgs#gcc
copy

SEE ALSO

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

RESOURCES

Copied to clipboard
Kai