source: chapter05/gcc-pass1.xml@ 4b84428e

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.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 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 4b84428e was 4b84428e, checked in by Jeremy Utley <jeremy@…>, 20 years ago

Minor typo correction - took the backslashes off the multi-line configure statement on gcc pass 1

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

  • Property mode set to 100644
File size: 5.6 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
3 <!ENTITY % general-entities SYSTEM "../general.ent">
4 %general-entities;
5]>
6<sect1 id="ch-tools-gcc-pass1" role="wrap">
7<title>GCC-&gcc-version; - Pass 1</title>
8<?dbhtml filename="gcc-pass1.html"?>
9
10<indexterm zone="ch-tools-gcc-pass1">
11<primary sortas="a-GCC">GCC</primary>
12<secondary>tools, pass 1</secondary></indexterm>
13
14<sect2 role="package"><title/>
15<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="../chapter06/gcc.xml" xpointer="xpointer(/sect1/sect2[1]/para[1])"/>
16
17<segmentedlist>
18<segtitle>&buildtime;</segtitle>
19<segtitle>&diskspace;</segtitle>
20<seglistitem><seg>4.4 SBU</seg><seg>300 MB</seg></seglistitem>
21</segmentedlist>
22
23<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="../chapter06/gcc.xml" xpointer="xpointer(/sect1/sect2[1]/segmentedlist[2])"/>
24
25</sect2>
26
27<sect2 role="installation">
28<title>Installation of GCC</title>
29
30<para>Unpack only the GCC-core tarball, as we won't be needing the C++ compiler
31nor the test suite here.</para>
32
33<para>This package is known to behave badly when you change its default
34optimization flags (including the <parameter>-march</parameter> and
35<parameter>-mcpu</parameter> options). Therefore, if you have defined any
36environment variables that override default optimizations, such as CFLAGS and
37CXXFLAGS, we recommend un-setting them when building GCC.</para>
38
39<para>The GCC documentation recommends building GCC outside of the source
40directory in a dedicated build directory:</para>
41
42<screen><userinput>mkdir ../gcc-build
43cd ../gcc-build</userinput></screen>
44
45<para>Prepare GCC for compilation:</para>
46
47<screen><userinput>CC="gcc -B/usr/bin" ../gcc-&gcc-version;/configure \
48 --prefix=/tools --libexecdir=/tools/lib \
49 --with-local-prefix=/tools --disable-nls \
50 --enable-shared --enable-languages=c</userinput></screen>
51
52<para>The meaning of the configure options:</para>
53
54<variablelist>
55<varlistentry>
56<term><parameter>CC="gcc -B/usr/bin"</parameter></term>
57<listitem><para>This parameter fixes a possible problem with building GCC
58at this stage, first noticed in LFS 5.1.1. If our host uses a new version
59of Binutils than we compiled, the host compiler may try use features not
60supported by our new linker, causing compilation errors. By passing the -B
61flag to gcc, we cause the compiler to temporarily use the host's linker,
62which solves the problem.</para></listitem>
63</varlistentry>
64
65<varlistentry>
66<term><parameter>--with-local-prefix=/tools</parameter></term>
67<listitem><para>The purpose of this switch is to remove <filename class="directory">/usr/local/include</filename>
68from <command>gcc</command>'s include search path. This is not absolutely
69essential; however, we want to try to minimize the influence of the host
70system, so this a sensible thing to do.</para></listitem>
71</varlistentry>
72
73<varlistentry>
74<term><parameter>--enable-shared</parameter></term>
75<listitem><para>This switch may
76seem counter-intuitive at first. But using it allows the building of
77<filename>libgcc_s.so.1</filename> and <filename>libgcc_eh.a</filename>, and
78having <filename>libgcc_eh.a</filename> available ensures that the configure
79script for Glibc (the next package we compile) produces the proper results.
80Note that the GCC binaries will still be linked
81statically, as this is controlled by the <parameter>-static</parameter>
82value of BOOT_LDFLAGS in the next step.</para></listitem>
83</varlistentry>
84
85<varlistentry>
86<term><parameter>--enable-languages=c</parameter></term>
87<listitem><para>This option
88ensures that only the C compiler is built. The option is only needed when you
89have downloaded and unpacked the full GCC tarball.</para></listitem>
90</varlistentry>
91</variablelist>
92
93<para>Continue with compiling the package:</para>
94
95<screen><userinput>make BOOT_LDFLAGS="-static" bootstrap</userinput></screen>
96
97<para>The meaning of the make parameters:</para>
98
99<variablelist>
100<varlistentry>
101<term><parameter>BOOT_LDFLAGS="-static"</parameter></term>
102<listitem><para>This tells GCC to link its programs statically.</para></listitem>
103</varlistentry>
104
105<varlistentry>
106<term><parameter>bootstrap</parameter></term>
107<listitem><para>This target doesn't just
108compile GCC, but compiles it several times. It uses the programs compiled in
109a first round to compile itself a second time, and then again a third time.
110It then compares these second and third compiles to make sure it can
111reproduce itself flawlessly, which most probably means that it was
112compiled correctly.</para></listitem>
113</varlistentry>
114</variablelist>
115
116<para>Compilation is now complete, and at this point we would normally run the
117test suite. But, as mentioned before, the test suite framework is not in place
118yet. And there would be little point in running the tests anyhow, since the
119programs from this first pass will soon be replaced.</para>
120
121<para>Now install the package:</para>
122
123<screen><userinput>make install</userinput></screen>
124
125<para>As a finishing touch we'll create a symlink. Many programs and scripts
126run <command>cc</command> instead of <command>gcc</command>,
127a thing meant to keep programs generic and therefore usable on all kinds of
128Unix systems. Not everybody has the GNU C compiler installed. Simply running
129<command>cc</command> leaves the system administrator free to decide what
130C compiler to install, as long as there's a symlink pointing to it:</para>
131
132<screen><userinput>ln -s gcc /tools/bin/cc</userinput></screen>
133
134</sect2>
135
136<sect2 role="content"><title/>
137<para>The details on this package are found in <xref linkend="contents-gcc"/>.</para>
138</sect2>
139
140</sect1>
Note: See TracBrowser for help on using the repository browser.