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
sudo pacman -S gcc
sudo apk add gcc
sudo zypper install gcc
brew install gcc
nix profile install nixpkgs#gcc
