Contents
Short Descriptions
Some program and library descriptions are not listed here, but can be found at ../../../../lfs/view/stable/chapter06/gcc.html#contents-gcc.
The GCC package contains GNU compilers. This is useful for compiling programs written in C, C++, Fortran, Java, Objective C and Ada.
Download (HTTP): http://mirrors.rcn.net/pub/sourceware/gcc/releases/gcc-3.4.3/gcc-3.4.3.tar.bz2
Download (FTP): ftp://mirrors.rcn.net/pub/sourceware/gcc/releases/gcc-3.4.3/gcc-3.4.3.tar.bz2
Download MD5 sum: e744b30c834360fccac41eb7269a3011
Download size: 27.4 MB
Estimated disk space required: 1.62 GB
Estimated build time: 45.50 SBU (build and install all compilers)
If you plan to compile Ada, you will need to install GNAT temporarily to satisfy the circular dependency when you recompile GCC to include Ada.
Download (FTP): ftp://cs.nyu.edu/pub/gnat/3.15p/gnat-3.15p-i686-pc-redhat71-gnu-bin.tar.gz
Download MD5 sum: 57c060cd1ccef8b1ae9165b11d98780a
Download size: 13.4 MB
Estimated build time: less than 0.1 SBU
Install GNAT by running the following commands:
./doconfig
The above script will ask you how and where you would like to install GNAT. To avoid conflicts with the system gcc, the package will be installed in a separate directory, that can later be removed from the system.
In response to the questions asked by the doconfig script, enter 3 in response to the first question and /opt/gnat in response to the second question.
To finish the install, run the following command as the root user:
./doinstall
The GNAT compiler can be invoked by executing the gcc binary installed by the above script.
You may now remove the GNAT source directory:
cd .. && rm -rf gnat-3.15p-i686-pc-linux-gnu-bin
Prepare to compile GCC by placing the GNAT gcc at the beginning of the PATH variable by using the following commands:
PATH_HOLD=$PATH && export PATH=/opt/gnat/bin:$PATH
Install GCC by running the following commands:
The installation process may overwrite your existing GCC compiler and libraries. It is highly recommended that you have the Tcl, Expect and DejaGnu packages installed before beginning the build so you can run the full suite of tests.
Do not continue with the make install command until you're confident the build was successful. You can compare your test results with those found at http://gcc.gnu.org/ml/gcc-testresults/. There's also an i686 platform test result produced by an LFS-6.1 system at http://linuxfromscratch.org/~randy/gcc343_test.txt. You may also want to refer to the information found in the GCC-Pass 2 section of Chapter 5 in the LFS book ( ../../../../lfs/view/stable/chapter05/gcc-pass2.html).
patch -Np1 -i ../gcc-3.4.3-no_fixincludes-1.patch && patch -Np1 -i ../gcc-3.4.3-linkonce-1.patch && sed -i 's/install_to_$(INSTALL_DEST) //' libiberty/Makefile.in && mkdir ../gcc-build && cd ../gcc-build && ../gcc-3.4.3/configure --prefix=/usr --libexecdir=/usr/lib \ --enable-shared --enable-threads=posix --enable-__cxa_atexit \ --enable-clocale=gnu --enable-languages=c,c++,objc,f77,ada,java && make bootstrap && make -C gcc gnatlib-shared && make -C gcc gnattools && make -k check && ../gcc-3.4.3/contrib/test_summary
Now, as the root user:
make install && ln -v -sf ../usr/bin/cpp /lib && ln -v -sf gcc /usr/bin/cc && ln -v -sf g77 /usr/bin/f77 && chown -v -R root:root \ /usr/lib/gcc/i686-pc-linux-gnu/3.4.3/include && chown -v -R root:root \ /usr/lib/gcc/i686-pc-linux-gnu/3.4.3/ada{lib,include}
There is a bug in the installation of the libffi interface headers. The architecture specific ffitarget.h file is not installed. If you included Java as one of the installed languages, install the missing file using the command below. Substitute for the [arch] in the command with the appropriate directory path for your system.
install -v -m644 ../gcc-3.4.3/libffi/src/[arch]/ffitarget.h \ /usr/include
As the root user, remove the GNAT installation:
rm -rf /opt/gnat
Now, as the unprivileged user, restore your old PATH:
export PATH=$PATH_HOLD && unset PATH_HOLD
Some of the Java programs installed by the GCC package conflict (have the same names) with programs from the JDK-1.5.0 package. If you installed the Java language from the GCC package but you wish to use the programs from the JDK as the defaults, ensure $JAVA_HOME/bin is listed before /usr/bin in your PATH variable.
sed -i 's/install_to_$(INSTALL_DEST) //' libiberty/Makefile.in: This command suppresses the installation of libiberty.a as the version provided by Binutils is used instead.
mkdir ../gcc-build; cd ../gcc-build: The GCC documentation recommends building the package in a dedicated build directory.
--enable-shared --enable-threads=posix --enable-__cxa_atexit: These commands are required to build the C++ libraries to published standards.
--enable-clocale=gnu: This command is a failsafe for incomplete locale data.
--enable-languages=c,c++,objc,f77,ada,java: This command identifies which languages to build. You may modify this command to remove undesired languages.
make -C gcc gnatlib-shared: This command builds the Ada shared and static libraries. Skip this step if you have not enabled Ada as one of the languages.
make -C gcc gnattools: This command builds the Ada development tools and binaries. Skip this step if you have not enabled Ada as one of the languages.
make -k check: This command runs the test suite without stopping should any errors be encountered.
../gcc-3.4.3/contrib/test_summary: This command will produce a summary of the test suite results. You can append | grep -A7 Summ to the command to produce an even more condensed version of the summary. You may also wish to redirect the output to a file for review and comparison later on.
ln -sf ../usr/bin/cpp /lib: This command creates a link to the C PreProcessor as some packages expect it to be installed in the /lib directory.
ln -sf gcc /usr/bin/cc; ln -sf g77 /usr/bin/f77: These links are created as some packages refer to the C and Fortran compilers using an alternate name.
chown -R root:root /usr/lib/gcc/i686-pc-linux-gnu/...: If the package is built by a user other than root, the ownership of the installed include and adalib directories (and their contents) will be incorrect. These commands change the ownership to root:root. Omit the command changing the Ada directories if you did not include Ada as one of the installed languages.
Some program and library descriptions are not listed here, but can be found at ../../../../lfs/view/stable/chapter06/gcc.html#contents-gcc.
Last updated on 2005-08-01 13:29:19 -0600