I have a problem that has caused me quite a few headaches and I would like some help from one of you.
I have a Linux operating system installed on my computer. The problem is that it doesn't have the GCC compiler and I would like to build it myself from source code.
The first thing I do is download GCC from its official repository (Latest version)
git clone git://gcc.gnu.org/git/gcc.git
Next, I unzip the GCC .tar.xz package and run the file called configure
At compile time, the process tells me that to compile GCC, I need gawk and bison, and this is where the problem comes.
To install either of those two tools (By source code), I need to have the compiler installed. So it goes like this,
- GCC needs GAWK and BISON
- GAWK and BISON needs GCC
What could I do?
Thank you!