I had a compute engine instance with Ubuntu TLS 14.4, and there is no gcc installed initially, so the following code is to install gcc-6 on Ubuntu.
Run the following code
1 | sudo apt-get update && \ |
When completed, you must change to the gcc you want to work with by default. Type in your terminal:
1 | sudo update-alternatives --config gcc |
To verify if it worked. Just type in your terminal
1 | gcc -v |