Project- Stage 1
This blog is for the SPO600 fall project. In this project, we will work on GCC. For the stage one, we are focus on how to build the GCC including the command to build the GCC from source code, and the time to build the whole project. The GCC is a complier that can translate the C++ code into machine code. There are so many lines of code in the GCC source files. Today I am going to write a blog about my research of the GCC We are going to talk about the builde process of GCC. Unline many small program which just have hundreds or thousands lines of codes. GCC is a huge code base, hence it require a huge amount of time to complie it. First, we need to download the codebase into our machine, we can go to the website git under gcc/gnu to find the git command for downloading. The command is git clone git://gcc.gnu.org/git/gcc.git SomeLocalDir. After downloading the codebase we need to configure the build. First we need to create a seperate directory that the file will...