You can use the following commands to find out what compilers are installed or available on a Linux system:
-
gcc -v
: This will display information about the version of the GCC (GNU Compiler Collection) compiler that is installed, if any. -
whereis cc
: This will show the location of thecc
compiler, which is usually a symlink to the default system compiler, such as GCC. -
which cc
: This will show the full path of thecc
compiler if it is in the PATH environment variable. -
ls /usr/bin/ | grep cc
orls /usr/bin/ | grep gcc
: This will list all files in the/usr/bin/
directory and search for thecc
orgcc
compiler. -
dpkg --list | grep compiler
: If you are using a Debian-based system, you can use this command to list all the packages that contain the word “compiler” in their name.
These commands will give you a good idea of what compilers are available on the system. If a compiler is not installed, you can install it using the package manager for your Linux distribution, such as apt-get
for Debian-based systems or yum
for Red Hat-based systems.