source: chapter07/libstdc++-pass2.xml@ 4ea78e0

ml-11.0 multilib
Last change on this file since 4ea78e0 was 51b58ad, checked in by Xℹ Ruoyao <xry111@…>, 3 years ago

Merge changes from trunk to multilib

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

  • Property mode set to 100644
File size: 4.6 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 arch="default"><userinput remap="configure">
66../libstdc++-v3/configure \
67 CXXFLAGS="-g -O2 -D_GNU_SOURCE" \
68 --prefix=/usr \
69 --disable-multilib \
70 --disable-nls \
71 --host=$(uname -m)-lfs-linux-gnu \
72 --disable-libstdcxx-pch</userinput></screen>
73<screen arch="ml_32,ml_x32,ml_all"><userinput remap="configure">../libstdc++-v3/configure \
74 CXXFLAGS="-g -O2 -D_GNU_SOURCE" \
75 --prefix=/usr \
76 --enable-multilib \
77 --disable-nls \
78 --host=$(uname -m)-lfs-linux-gnu \
79 --disable-libstdcxx-pch</userinput></screen>
80
81 <variablelist>
82 <title>The meaning of the configure options:</title>
83
84 <varlistentry>
85 <term><parameter>CXXFLAGS="-g -O2 -D_GNU_SOURCE"</parameter></term>
86 <listitem>
87 <para>These flags are passed by the top level Makefile when doing
88 a full build of GCC.</para>
89 </listitem>
90 </varlistentry>
91
92 <varlistentry>
93 <term><parameter>--host=$(uname -m)-lfs-linux-gnu</parameter></term>
94 <listitem>
95 <para>We have to mimic what would happen if this package were built
96 as part of a full compiler build. This switch would be passed to
97 configure by GCC's build machinery.</para>
98 </listitem>
99 </varlistentry>
100
101 <varlistentry>
102 <term><parameter>--disable-libstdcxx-pch</parameter></term>
103 <listitem>
104 <para>This switch prevents the installation of precompiled
105 include files, which are not needed at this stage.</para>
106 </listitem>
107 </varlistentry>
108
109 <varlistentry arch="ml_32,ml_x32,ml_all">
110 <term><parameter>--enable-multilib</parameter></term>
111 <listitem>
112 <para>This switch is set by default but it is added here
113 explicitly for documentary purpose. The libstdc++ libraries
114 will be built for every arch (m64, m32, mx32) which are
115 made available in <xref linkend="ch-tools-gcc-pass1"/>.</para>
116 </listitem>
117 </varlistentry>
118
119 </variablelist>
120
121 <para>Compile libstdc++ by running:</para>
122
123<screen><userinput remap="make">make</userinput></screen>
124
125 <para>Install the library:</para>
126
127<screen><userinput remap="install">make install</userinput></screen>
128
129 </sect2>
130
131 <sect2 role="content">
132 <title/>
133
134 <para>Details on this package are located in <xref linkend="contents-gcc" role="."/></para>
135
136 </sect2>
137
138</sect1>
Note: See TracBrowser for help on using the repository browser.