|
|
发表于 2005-4-2 06:19:00
|
显示全部楼层
I like a sentence from the LFS handbook, "To compile a compiler, you need a compiler".
If you don't have a compiler installed in your system, how can you compile your compiler (gcc)?
First of all, you should install the gcc binary, not the gcc source code. You have not described the distribution you are using.
In Debian, you should:
apt-get install gcc
In RedHat, you should install the gcc binary packages with rpm.
Of course, you should look for the right version of gcc to install. gcc-3.3.x is suggested. As you are not familiar with gcc, gcc-3.4.x is not recommended to you because you may encounter compatibility problems.
Once you have gcc installed, you can proceed to compile your game. |
|