source: chapter06/gcc.xml@ 5888299

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_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 5888299 was 5888299, checked in by Alex Gronenwoud <alex@…>, 20 years ago

Moving stuff from appendix A to chapter 6.

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

  • Property mode set to 100644
File size: 3.8 KB
Line 
1<sect1 id="ch06-gcc" xreflabel="GCC">
2<title>Installing GCC-&gcc-version;</title>
3<?dbhtml filename="gcc.html" dir="chapter06"?>
4
5<para>The GCC package contains the GNU compiler collection, among them
6the C and C++ compilers.</para>
7
8<screen>Estimated build time: &gcc-time;
9Estimated required disk space: &gcc-compsize;</screen>
10
11<literallayout>Official download location for GCC (&gcc-version;):
12<ulink url="ftp://ftp.gnu.org/pub/gnu/gcc/"/>
13And for the GCC No-Fixincludes Patch:
14<ulink url="&patches-root;&gcc-nofixincludes-patch;"/></literallayout>
15
16&aa-gcc-dep;
17
18<sect2><title>&nbsp;</title><para>&nbsp;</para></sect2>
19
20<sect2>
21<title>Installation of GCC</title>
22
23<note><para>The test suite for GCC in this section is considered
24<emphasis>critical</emphasis>. Our advice is to not skip it under any
25circumstance.</para></note>
26
27<para>This package is known to behave badly when you have changed its
28default optimization flags (including the -march and -mcpu options).
29Therefore, if you have defined any environment variables that override
30default optimizations, such as CFLAGS and CXXFLAGS, we recommend unsetting
31or modifying them when building GCC.</para>
32
33<para>Unpack the GCC-core <emphasis>and</emphasis> the GCC-g++ tarball -- they
34will unfold into the same directory. You should likewise extract the
35GCC-testsuite package. The full GCC package contains even more
36compilers. Instructions for building these can be found at
37<ulink url="&blfs-root;view/stable/general/gcc.html"/>.</para>
38
39<note><para>Be careful <emphasis role="strong">not</emphasis> to apply the GCC
40Specs patch from Chapter 5 here.</para></note>
41
42<para>First apply the No-Fixincludes patch that we also used in the previous
43chapter:</para>
44
45<screen><userinput>patch -Np1 -i ../&gcc-nofixincludes-patch;</userinput></screen>
46
47<para>Now apply a sed substitution that will suppress the installation of
48<filename>libiberty.a</filename>. We want to use the version of
49<filename>libiberty.a</filename> provided by Binutils:</para>
50
51<screen><userinput>sed -i 's/install_to_$(INSTALL_DEST) //' libiberty/Makefile.in</userinput></screen>
52
53<para>The GCC documentation recommends building GCC outside of the source
54directory in a dedicated build directory:</para>
55
56<screen><userinput>mkdir ../gcc-build
57cd ../gcc-build</userinput></screen>
58
59<para>Now prepare GCC for compilation:</para>
60
61<screen><userinput>../gcc-&gcc-version;/configure --prefix=/usr \
62&nbsp;&nbsp;&nbsp;&nbsp;--enable-shared --enable-threads=posix \
63&nbsp;&nbsp;&nbsp;&nbsp;--enable-__cxa_atexit --enable-clocale=gnu \
64&nbsp;&nbsp;&nbsp;&nbsp;--enable-languages=c,c++</userinput></screen>
65
66<para>Compile the package:</para>
67
68<screen><userinput>make</userinput></screen>
69
70<para>Test the results, but don't stop at errors (you'll remember the few
71known ones):</para>
72
73<screen><userinput>make -k check</userinput></screen>
74
75<para>The test suite notes from <xref linkend="ch05-gcc-pass2"/> are still very
76much appropriate here. Be sure to refer back there should you have any
77doubts.</para>
78
79<para>And install the package:</para>
80
81<screen><userinput>make install</userinput></screen>
82
83<para>Some packages expect the C PreProcessor to be installed in the
84<filename>/lib</filename> directory.
85To honor those packages, create this symlink:</para>
86
87<screen><userinput>ln -s ../usr/bin/cpp /lib</userinput></screen>
88
89<para>Many packages use the name <userinput>cc</userinput> to call the C
90compiler. To satisfy those packages, create a symlink:</para>
91
92<screen><userinput>ln -s gcc /usr/bin/cc</userinput></screen>
93
94<note><para>At this point it is strongly recommended to repeat the sanity check
95we performed earlier in this chapter. Refer back to
96<xref linkend="ch06-adjustingtoolchain"/> and repeat the check. If the results
97are wrong, then most likely you erroneously applied the GCC Specs patch from
98Chapter 5.</para></note>
99
100</sect2>
101
102&aa-gcc-shortdesc;
103&aa-gcc-desc;
104
105</sect1>
106
Note: See TracBrowser for help on using the repository browser.