How to install GCC on Linux Mint 18.3
To install GCC on Linux Mint 18.3
The GNU Compiler Collection (GCC) is a compiler system produced by the GNU project to support various programming languages. GCC is a key component of the GNU toolchain and the standard compiler for most UNIX like OS. It is mainly designed for C and C++ compiler. In this tutorial, we will see how to install and remove GCC on Linux Mint 18.3.
Installing GCC
First, make sure you add the necessary repo by making use of the following command.
linuxhelp ~ # add-apt-repository ppa:eugenesan/ppa
You are about to add the following PPA:
This repository contains collection of customized, updated, ported and backported
packages for two last LTS releases and latest pre-LTS release.
Packages for older releases relocated to ppa:eugenesan/archive or deleted.
+-------------------------------------------------------------------------------------+
| Disclaimer:
+-------------------------------------------------------------------------------------+
.
.
8313A596
gpg: requesting key 8313A596 from hkp server keyserver.ubuntu.com
gpg: key 8313A596: public key " Launchpad synergy+" imported
gpg: Total number processed: 1
gpg: imported: 1 (RSA: 1)
After adding repo, you need to update the system repo package using the following command
linuxhelp ~ # apt-get update
Hit:1 http://archive.ubuntu.com/ubuntu xenial InRelease
Ign:2 http://packages.linuxmint.com sylvia InRelease
Get:3 http://ppa.launchpad.net/eugenesan/ppa/ubuntu xenial InRelease [17.5 kB]
Hit:4 http://archive.canonical.com/ubuntu xenial InRelease
Get:5 http://archive.ubuntu.com/ubuntu xenial-updates InRelease [102 kB]
Get:6 http://packages.linuxmint.com sylvia Release [24.2 kB]
.
.
Get:28 http://archive.ubuntu.com/ubuntu xenial-backports/universe Translation-en [3,812 B]
Get:29 http://security.ubuntu.com/ubuntu xenial-security/universe i386 Packages [281 kB]
Get:30 http://security.ubuntu.com/ubuntu xenial-security/universe Translation-en [121 kB]
Fetched 5,472 kB in 11s (477 kB/s)
Reading package lists... Done
And then, after updating install the GCC using the following command.
linuxhelp ~ # apt-get install gcc-4.9
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following additional packages will be installed:
cpp-4.9 gcc-4.9-base libasan1 libgcc-4.9-dev
Suggested packages:
gcc-4.9-locales gcc-4.9-multilib gcc-4.9-doc libgcc1-dbg libgomp1-dbg libitm1-dbg libatomic1-dbg libasan1-dbg liblsan0-dbg libtsan0-dbg
libubsan0-dbg libcilkrts5-dbg libquadmath0-dbg
.
.
Setting up cpp-4.9 (4.9.3-13ubuntu2) ...
Setting up libasan1:amd64 (4.9.3-13ubuntu2) ...
Setting up libgcc-4.9-dev:amd64 (4.9.3-13ubuntu2) ...
Setting up gcc-4.9 (4.9.3-13ubuntu2) ...
Processing triggers for libc-bin (2.23-0ubuntu9) ...
Verify the installation using the following command .
linuxhelp ~ # gcc -v
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper
Target: x86_64-linux-gnu
Now, let’ s see how to remove the GCC, use the following command to remove GCC from the system.
linuxhelp ~ # apt-get remove gcc-4.9
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages were automatically installed and are no longer required:
cpp-4.9 gcc-4.9-base libasan1 libgcc-4.9-dev
Use ' sudo apt autoremove' to remove them.
The following packages will be REMOVED:
gcc-4.9
0 upgraded, 0 newly installed, 1 to remove and 287 not upgraded.
After this operation, 17.5 MB disk space will be freed.
Do you want to continue? [Y/n] y
(Reading database ... 224081 files and directories currently installed.)
Removing gcc-4.9 (4.9.3-13ubuntu2) ...
Processing triggers for man-db (2.7.5-1) ...
That’ s it this is how we install and remove gcc on linuxmint 18.3
Comments ( 0 )
No comments available