source: chapter05/gcc-pass1.xml@ 9dfc02f

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 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 9dfc02f was 9dfc02f, checked in by Zack Winkles <winkie@…>, 20 years ago

Current BE-LFS (but w/ GCC 3.3.3) merged -> 6.0 branch

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

  • Property mode set to 100644
File size: 4.7 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">
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<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="../chapter06/gcc.xml" xpointer="xpointer(/sect1/para[1])"/>
15
16<screen>&buildtime; 4.4 SBU
17&diskspace; 300 MB</screen>
18
19<xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="../chapter06/gcc.xml" xpointer="xpointer(/sect1/para[2])"/>
20
21
22<sect2>
23<title>Installation of GCC</title>
24
25<para>Unpack only the GCC-core tarball, as we won't be needing the C++ compiler
26nor the test suite here.</para>
27
28<para>This package is known to behave badly when you change its default
29optimization flags (including the <emphasis>-march</emphasis> and
30<emphasis>-mcpu</emphasis> options). Therefore, if you have defined any
31environment variables that override default optimizations, such as CFLAGS and
32CXXFLAGS, we recommend un-setting them when building GCC.</para>
33
34<para>The GCC documentation recommends building GCC outside of the source
35directory in a dedicated build directory:</para>
36
37<screen><userinput>mkdir ../gcc-build
38cd ../gcc-build</userinput></screen>
39
40<para>Prepare GCC for compilation:</para>
41
42<screen><userinput>../gcc-&gcc-version;/configure --prefix=/tools \
43 --libexecdir=/tools/lib --with-local-prefix=/tools \
44 --disable-nls --enable-shared --enable-languages=c</userinput></screen>
45
46<para>The meaning of the configure options:</para>
47
48<itemizedlist>
49<listitem><para><userinput>--with-local-prefix=/tools</userinput>: The
50purpose of this switch is to remove <filename>/usr/local/include</filename>
51from <command>gcc</command>'s include search path. This is not absolutely
52essential; however, we want to try to minimize the influence of the host
53system, so this a sensible thing to do.</para></listitem>
54
55<listitem><para><userinput>--enable-shared</userinput>: This switch may
56seem counter-intuitive at first. But using it allows the building of
57<filename>libgcc_s.so.1</filename> and <filename>libgcc_eh.a</filename>, and
58having <filename>libgcc_eh.a</filename> available ensures that the configure
59script for Glibc (the next package we compile) produces the proper results.
60Note that the <command>gcc</command> binaries will still be linked
61statically, as this is controlled by the <emphasis>-static</emphasis>
62value of BOOT_LDFLAGS in the next step.</para></listitem>
63
64<listitem><para><userinput>--enable-languages=c</userinput>: This option
65ensures that only the C compiler is built. The option is only needed when you
66have downloaded and unpacked the full GCC tarball.</para></listitem>
67</itemizedlist>
68
69<para>Continue with compiling the package:</para>
70
71<screen><userinput>make BOOT_LDFLAGS="-static" bootstrap</userinput></screen>
72
73<para>The meaning of the make parameters:</para>
74
75<itemizedlist>
76<listitem><para><userinput>BOOT_LDFLAGS="-static"</userinput>: This tells
77GCC to link its programs statically.</para></listitem>
78
79<listitem><para><userinput>bootstrap</userinput>: This target doesn't just
80compile GCC, but compiles it several times. It uses the programs compiled in
81a first round to compile itself a second time, and then again a third time.
82It then compares these second and third compiles to make sure it can
83reproduce itself flawlessly, which most probably means that it was
84compiled correctly.</para></listitem>
85</itemizedlist>
86
87<para>Compilation is now complete, and at this point we would normally run the
88test suite. But, as mentioned before, the test suite framework is not in place
89yet. And there would be little point in running the tests anyhow, since the
90programs from this first pass will soon be replaced.</para>
91
92<para>Now install the package:</para>
93
94<screen><userinput>make install</userinput></screen>
95
96<para>As a finishing touch we'll create a symlink. Many programs and scripts
97run <command>cc</command> instead of <command>gcc</command>,
98a thing meant to keep programs generic and therefore usable on all kinds of
99Unix systems. Not everybody has the GNU C compiler installed. Simply running
100<command>cc</command> leaves the system administrator free to decide what
101C compiler to install, as long as there's a symlink pointing to it:</para>
102
103<screen><userinput>ln -s gcc /tools/bin/cc</userinput></screen>
104
105</sect2>
106
107<sect2><title> </title><para> </para>
108<para>The details on this package are found in <xref linkend="contents-gcc"/>.</para>
109<para> </para></sect2>
110
111</sect1>
Note: See TracBrowser for help on using the repository browser.