source: chapter05/gcc-pass1-inst.xml@ 98ced7f

10.0 10.0-rc1 10.1 10.1-rc1 11.0 11.0-rc1 11.0-rc2 11.0-rc3 11.1 11.1-rc1 11.2 11.2-rc1 11.3 11.3-rc1 12.0 12.0-rc1 12.1 12.1-rc1 6.0 6.1 6.1.1 6.3 6.4 6.5 6.6 6.7 6.8 7.0 7.1 7.2 7.3 7.4 7.5 7.5-systemd 7.6 7.6-systemd 7.7 7.7-systemd 7.8 7.8-systemd 7.9 7.9-systemd 8.0 8.1 8.2 8.3 8.4 9.0 9.1 arm bdubbs/gcc13 ml-11.0 multilib renodr/libudev-from-systemd s6-init trunk v5_0 v5_1 v5_1_1 xry111/arm64 xry111/arm64-12.0 xry111/clfs-ng xry111/lfs-next xry111/loongarch xry111/loongarch-12.0 xry111/loongarch-12.1 xry111/mips64el xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since 98ced7f was 2664e17, checked in by Gerard Beekmans <gerard@…>, 21 years ago

removed make check from binutils-pass1 and gcc-pass1. Doesn't work without tcl, excpect and dejagnu installed.

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2500 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 5.0 KB
Line 
1<sect2><title>&nbsp;</title><para>&nbsp;</para></sect2>
2
3<sect2>
4<title>Installation of GCC</title>
5
6<para>We won't be needing a C++ compiler until Chapter 6. So, only
7the gcc-core tarball needs to be unpacked at this time.</para>
8
9<para>This package is known to behave badly when you have changed its
10default optimization flags (including the -march and -mcpu options).
11Therefore, if you have defined any environment variables that override
12default optimizations, such as CFLAGS and CXXFLAGS, we recommend unsetting
13or modifying them when building GCC.</para>
14
15<para><screen><userinput>patch -Np1 -i ../gcc-&gcc-version;-mmap_test.patch
16patch -Np1 -i ../gcc-&gcc-version;-no_fixincludes.patch
17patch -Np1 -i ../gcc-&gcc-version;-libstdc++_no_debug.patch
18patch -Np1 -i ../gcc-&gcc-version;-libgcc_no_debug.patch</userinput></screen></para>
19
20<para>It is recommended by the GCC installation documentation to build
21GCC outside of the source directory in a dedicated directory:</para>
22
23<para><screen><userinput>mkdir ../gcc-build
24cd ../gcc-build</userinput></screen></para>
25
26<para>Prepare GCC to be compiled:</para>
27
28<para><screen><userinput>CFLAGS="-O2 -pipe" \
29&nbsp;&nbsp;&nbsp;&nbsp;../gcc-&gcc-version;/configure --prefix=/stage1 \
30&nbsp;&nbsp;&nbsp;&nbsp;--with-local-prefix=/stage1 \
31&nbsp;&nbsp;&nbsp;&nbsp;--disable-nls --enable-shared </userinput></screen></para>
32
33<para>The meaning of the configure options are:</para>
34
35<itemizedlist>
36<listitem><para><userinput>--prefix=/static</userinput>: This is NOT a
37typo. GCC hard codes some paths while compiling and so we need to pass
38<filename class="directory">/static</filename> as the prefix during the
39configure stage. We will pass the real installation prefix (<filename
40class="directory">$LFS/static</filename>) during the installation
41stage later on.</para></listitem>
42
43<listitem><para><userinput>--disable-shared</userinput>: This prevents the
44build of dynamic libraries. They are useless to us at the moment. We'll
45create them when we reinstall GCC in chapter 6.</para></listitem>
46
47<listitem><para><userinput>--with-as=$LFS/static/bin/as and
48--with-ld=$LFS/static/bin/ld</userinput>: GCC can be miscompiled if your
49host distribution's Binutils package is quite old. We need a good working
50static GCC until we reinstall GCC later in chapter 6. So by using
51<filename>as</filename> and <filename>ld</filename> from the Binutils
52package we compiled earlier in this chapter we ensure that GCC will work
53correctly.</para></listitem>
54</itemizedlist>
55
56<para>Continue with compiling the package:</para>
57
58<para><screen><userinput>make BOOT_LDFLAGS="-static -s" \
59&nbsp;&nbsp;&nbsp;&nbsp;BOOT_CFLAGS="-O2 -pipe" \
60&nbsp;&nbsp;&nbsp;&nbsp;STAGE1_CFLAGS="-pipe" bootstrap</userinput></screen></para>
61
62<para>The meaning of the make options are:</para>
63
64<itemizedlist>
65<listitem><para><userinput>BOOT_LDFLAGS="-static"</userinput>: This is
66GCC's equivalent to make LDFLAGS="-static" as we use with other packages to
67compile them statically.</para></listitem>
68
69<listitem><para><userinput>bootstrap</userinput>: The
70<emphasis>bootstrap</emphasis> target doesn't just compile GCC, but it
71compiles GCC a second time. It uses the first compiled programs to compile
72itself a second and third time to make sure the compiler was compiled properly
73and can compile itself properly.</para></listitem>
74</itemizedlist>
75
76<para>And finish off installing the package:</para>
77
78<para><screen><userinput>make install</userinput></screen></para>
79
80<para>The meaning of the make option is:</para>
81
82<itemizedlist>
83<listitem><para><userinput>install-no-fixedincludes</userinput>: This prevents
84the fixincludes script from running. Preventing this is necessary because
85under normal circumstances the GCC installation will run the fixincludes
86script which scans your system for header files that need to be fixed. It
87might find that the Glibc header files of your host system need to be fixed.
88If so, it will fix them and put them in
89<filename>$LFS/static/lib/gcc-lib/i686-pc-linux-gnu/3.2</filename>. Later on
90in chapter 6 you will install Glibc which will put its header files in
91<filename>/usr/include</filename>. Next you will install other programs that
92use the Glibc headers and GCC will look in
93<filename>/static/lib/gcc-lib</filename> before looking in
94<filename>/usr/include</filename>, with the result of finding and using the
95fixed Glibc header files from your host distribution, which are probably
96incompatible with the Glibc version actually used on the LFS
97system.</para></listitem>
98</itemizedlist>
99
100<para>As the finishing touch we'll create the <filename
101class="symlink">$LFS/static/bin/cc</filename> symlink. A lot of programs
102and scripts try to run <userinput>cc</userinput> instead of
103<userinput>gcc</userinput> This is to keep programs generic and usable on
104all kinds of Unix systems. Not everybody has GNU CC installed. Just running
105<userinput>cc</userinput> (C Compiler) leaves the user free to decide which
106C compiler to install. The symlink will point to the system's default
107compiler.</para>
108
109<para><screen><userinput>ln -sf gcc /stage1/bin/cc</userinput></screen></para>
110
111</sect2>
112
Note: See TracBrowser for help on using the repository browser.