blob: 77b464c17e85541b0530c0e6cefa8f2c3972848c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<sect2><title> </title><para> </para></sect2>
<sect2>
<title>Installation of Binutils</title>
<para><screen><userinput>patch -Np1 -i ../binutils-&binutils-version;-lib-path.patch
mkdir ../binutils-build
cd ../binutils-build
CFLAGS="-O2 -pipe" ../binutils-&binutils-version;/configure --prefix=/stage1 \
--enable-shared --with-lib-path=/stage1/lib
make LDFLAGS="-s"
make check
make install</userinput></screen></para>
<para><screen><userinput>cd ld
make clean
make LIB_PATH=/usr/lib:/lib</userinput></screen></para>
<para>Do not remove the binutils-* directories after the installation.
We'll need this directory again in chapter 6 as-is.</para>
</sect2>
|