source: chapter07/libstdc++-pass2.xml@ aefc822

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 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 aefc822 was aefc822, checked in by Bruce Dubbs <bdubbs@…>, 4 years ago

Updates to the rest of cross2 Chapter 7.

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/cross2@11919 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 3.4 KB
RevLine 
[fcc02767]1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../general.ent">
5 %general-entities;
6]>
7
8<sect1 id="ch-tools-libstdcpp-pass2" role="wrap">
9 <?dbhtml filename="gcc-libstdc++-pass2.html"?>
10
11 <sect1info condition="script">
12 <productname>gcc-libstdc++</productname>
13 <productnumber>&gcc-version;</productnumber>
14 <address>&gcc-url;</address>
15 </sect1info>
16
17 <title>Libstdc++ from GCC-&gcc-version;, Pass 2</title>
18
19 <indexterm zone="ch-tools-libstdcpp-pass2">
20 <primary sortas="a-GCC">GCC</primary>
21 <secondary>tools, libstdc++ pass 2</secondary>
22 </indexterm>
23
24 <sect2 role="package">
25 <title/>
26
[aefc822]27 <para>When building <xref linkend="ch-tools-gcc-pass2"/> we had to defer
28 the installation of the C++ standard library because no suitable compiler
29 was available to compile it. We could not use the compiler built in that
30 section because it is a native compiler and should not be used outside of
31 chroot and risk polluting the libraries with some host components.</para>
[fcc02767]32
33 <segmentedlist>
34 <segtitle>&buildtime;</segtitle>
35 <segtitle>&diskspace;</segtitle>
36
37 <seglistitem>
38 <seg>&libstdcpp-ch5-sbu;</seg>
39 <seg>&libstdcpp-ch5-du;</seg>
40 </seglistitem>
41 </segmentedlist>
42
43 </sect2>
44
45 <sect2 role="installation">
46 <title>Installation of Target Libstdc++</title>
47
48 <note>
49 <para><application>Libstdc++</application> is part of the GCC sources.
50 You should first unpack the GCC tarball and change to the
51 <filename>gcc-&gcc-version;</filename> directory.</para>
52 </note>
53
[aefc822]54 <para>Create a link which exists when building libstdc++ in the gcc tree:</para>
[fcc02767]55
56<screen><userinput remap="pre">ln -s gthr-posix.h libgcc/gthr-default.h</userinput></screen>
57
[aefc822]58 <para>Create a separate build directory for libstdc++ and enter it:</para>
[fcc02767]59
60<screen><userinput remap="pre">mkdir -v build
61cd build</userinput></screen>
62
[aefc822]63 <para>Prepare libstdc++ for compilation:</para>
[fcc02767]64
65<screen><userinput remap="configure">../libstdc++-v3/configure \
66 CXXFLAGS="-g -O2 -D_GNU_SOURCE" \
67 --prefix=/usr \
68 --disable-multilib \
69 --disable-nls \
70 --disable-libstdcxx-pch</userinput></screen>
71
72 <variablelist>
73 <title>The meaning of the configure options:</title>
74
75 <varlistentry>
76 <term><parameter>CXXFLAGS="-g -O2 -D_GNU_SOURCE"</parameter></term>
77 <listitem>
[aefc822]78 <para>These flags are passed by the top level Makefile when doing
79 a full build of GCC.</para>
[fcc02767]80 </listitem>
81 </varlistentry>
82
83 <varlistentry>
84 <term><parameter>--disable-libstdcxx-pch</parameter></term>
85 <listitem>
86 <para>This switch prevents the installation of precompiled
87 include files, which are not needed at this stage.</para>
88 </listitem>
89 </varlistentry>
90
91 </variablelist>
92
93 <para>Compile libstdc++ by running:</para>
94
95<screen><userinput remap="make">make</userinput></screen>
96
97 <para>Install the library:</para>
98
99<screen><userinput remap="install">make install</userinput></screen>
100
101 </sect2>
102
103 <sect2 role="content">
104 <title/>
105
[aefc822]106 <para>Details on this package are located in <xref linkend="contents-gcc" role="."/></para>
[fcc02767]107
108 </sect2>
109
110</sect1>
Note: See TracBrowser for help on using the repository browser.