blob: 6a2ff538f22099fa8ca03765b90aab57dfa43b65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
<sect2>
<title>Installation of GCC</title>
<para>
After the gcc-2.95.2.1 archive was unpacked, the newly created
gcc-2.95.2.1 directory is not entered. The user should stay in the
$LFS/usr/src directory. GCC is installed by
running the following commands:
</para>
<blockquote><literallayout>
<userinput>mkdir $LFS/usr/src/gcc-build &&</userinput>
<userinput>cd $LFS/usr/src/gcc-build &&</userinput>
<userinput>../gcc-2.95.2.1/configure --prefix=/usr \</userinput>
<userinput> --with-gxx-include-dir=/usr/include/g++
\</userinput>
<userinput> --enable-languages=c,c++ --disable-nls
&&</userinput>
<userinput>make -e LDFLAGS=-static bootstrap &&</userinput>
<userinput>make prefix=$LFS/usr local_prefix=$LFS/usr/local
\</userinput>
<userinput> gxx_include_dir=$LFS/usr/include/g++
install &&</userinput>
<userinput>cd $LFS/lib &&</userinput>
<userinput>ln -s ../usr/lib/gcc-lib/*/2.95.2.1/cpp
&&</userinput>
<userinput>cd $LFS/usr/lib &&</userinput>
<userinput>ln -s gcc-lib/*/2.95.2.1/cpp
&&</userinput>
<userinput>cd $LFS/usr/bin &&</userinput>
<userinput>ln -s gcc cc</userinput>
</literallayout></blockquote>
</sect2>
|