Installing Binutils-2.14 - Pass 1

Approximate build time:  1.0 SBU
Required disk space:     194 MB

Official download location for Binutils (2.14): 
ftp://ftp.gnu.org/gnu/binutils/

For its installation Binutils depends on: Bash, Coreutils, Diffutils, GCC, Gettext, Glibc, Grep, Make, Perl, Sed, Texinfo.

Installation of Binutils

It is important that Binutils be the first package to get compiled, because both Glibc and GCC perform various tests on the available linker and assembler to determine which of their own features to enable.

This package is known to behave badly when you have changed its default optimization flags (including the -march and -mcpu options). Therefore, if you have defined any environment variables that override default optimizations, such as CFLAGS and CXXFLAGS, we recommend unsetting or modifying them when building Binutils.

The Binutils documentation recommends building Binutils outside of the source directory in a dedicated build directory:

mkdir ../binutils-build
cd ../binutils-build

Note: If you want the SBU values listed in the rest of the book to be of any use, you will have to measure the time it takes to build this package. To achieve this easily, you could do something like: time { ./configure ... && ... && ... && make install; }.

Now prepare Binutils for compilation:

../binutils-2.14/configure --prefix=/tools --disable-nls

The meaning of the configure options:

Continue with compiling the package:

make configure-host
make LDFLAGS="-all-static"

The meaning of the make parameters:

Compilation is now complete. This is the point where we would normally run the test suite. But as discussed earlier, we don't recommend running the test suites for the temporary tools here in this chapter. However, even if we still wanted to run the Binutils test suite, we're unable do so at this early stage because the test suite framework is not yet in place. Not only that, the programs from this first pass will soon be overwritten by those installed in the second pass.

And install the package:

make install

Now prepare the linker for the "locking in" of Glibc later on:

make -C ld clean
make -C ld LDFLAGS="-all-static" LIB_PATH=/tools/lib

The meaning of the make parameters:

 

Warning

Do not yet remove the Binutils build and source directories. You will need them again in their current state a bit further on in this chapter.

 

The details on this package are found in the Section called Contents of Binutils in Chapter 6.