16.04.2017, 15:59
I would not suggest installing compilers that way since it could be pain in the ass to update if needed. Just use:
That will install make, gcc, g++, dpkg-dev. Most of the time that is all you will ever need. Since its a single line you can also get rid of it very easy, with just one line.
Also for git clone, add --depth 1. We dont need whole repository history. But then again i always use wget and one of the releases because they are the ones considered stable.
pawn Код:
sudo apt-get install build-essential
Also for git clone, add --depth 1. We dont need whole repository history. But then again i always use wget and one of the releases because they are the ones considered stable.

