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

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 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 b17714a9 was 25771c3, checked in by Pierre Labastie <pieere@…>, 4 years ago

Various clean up:

  • prevent static python libraries to be installed in chapter 7 since it is not overwrittent in chapter 8
  • have libstdc++-pass2 install its host specific headers into a host specific directory
  • clean the temporary compiler and the cros compiler at the end of chapter 8

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

  • Property mode set to 100644
File size: 3.8 KB
Line 
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
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 risks polluting the libraries with some host components.</para>
32
33 <segmentedlist>
34 <segtitle>&buildtime;</segtitle>
35 <segtitle>&diskspace;</segtitle>
36
37 <seglistitem>
38 <seg>&libstdcpp-tmpp2-sbu;</seg>
39 <seg>&libstdcpp-tmpp2-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
54 <para>Create a link which exists when building libstdc++ in the gcc tree:</para>
55
56<screen><userinput remap="pre">ln -s gthr-posix.h libgcc/gthr-default.h</userinput></screen>
57
58 <para>Create a separate build directory for libstdc++ and enter it:</para>
59
60<screen><userinput remap="pre">mkdir -v build
61cd build</userinput></screen>
62
63 <para>Prepare libstdc++ for compilation:</para>
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 --host=$(uname -m)-lfs-linux-gnu \
71 --disable-libstdcxx-pch</userinput></screen>
72
73 <variablelist>
74 <title>The meaning of the configure options:</title>
75
76 <varlistentry>
77 <term><parameter>CXXFLAGS="-g -O2 -D_GNU_SOURCE"</parameter></term>
78 <listitem>
79 <para>These flags are passed by the top level Makefile when doing
80 a full build of GCC.</para>
81 </listitem>
82 </varlistentry>
83
84 <varlistentry>
85 <term><parameter>--host=$(uname -m)-lfs-linux-gnu</parameter></term>
86 <listitem>
87 <para>We have to mimic what would happen if this package were built
88 as part of a full compiler build. This switch would be passed to
89 configure by GCC's build machinery.</para>
90 </listitem>
91 </varlistentry>
92
93 <varlistentry>
94 <term><parameter>--disable-libstdcxx-pch</parameter></term>
95 <listitem>
96 <para>This switch prevents the installation of precompiled
97 include files, which are not needed at this stage.</para>
98 </listitem>
99 </varlistentry>
100
101 </variablelist>
102
103 <para>Compile libstdc++ by running:</para>
104
105<screen><userinput remap="make">make</userinput></screen>
106
107 <para>Install the library:</para>
108
109<screen><userinput remap="install">make install</userinput></screen>
110
111 </sect2>
112
113 <sect2 role="content">
114 <title/>
115
116 <para>Details on this package are located in <xref linkend="contents-gcc" role="."/></para>
117
118 </sect2>
119
120</sect1>
Note: See TracBrowser for help on using the repository browser.