source: general/prog/gcc3.xml@ b1df977

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.1 6.2 6.2.0 6.2.0-rc1 6.2.0-rc2 6.3 6.3-rc1 6.3-rc2 6.3-rc3 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since b1df977 was b1df977, checked in by Manuel Canales Esparcia <manuel@…>, 19 years ago

Tagged gcc3.xml

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@3972 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 7.0 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
3 "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY gcc3-download-http "http://ftp.gnu.org/gnu/gcc/gcc-&gcc3-version;/gcc-&gcc3-version;.tar.bz2">
8 <!ENTITY gcc3-download-ftp "ftp://ftp.gnu.org/gnu/gcc/gcc-&gcc3-version;/gcc-&gcc3-version;.tar.bz2">
9 <!ENTITY gcc3-md5sum "a1c267b34f05c8660b24251865614d8b">
10 <!ENTITY gcc3-size "23 MB">
11 <!ENTITY gcc3-buildsize "489 MB">
12 <!ENTITY gcc3-time "5.72 SBU (additional 12.54 SBU to run the test suite)">
13]>
14
15<sect1 id="gcc3" xreflabel="GCC-&gcc3-version;">
16 <?dbhtml filename="gcc3.html" ?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>GCC-&gcc3-version;</title>
24
25 <indexterm zone="gcc3">
26 <primary sortas="a-GCC-3-3">GCC-&gcc3-version;</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to GCC-&gcc3-version;</title>
31
32 <para>The reason for installing
33 <application>GCC</application>-&gcc3-version; is that
34 some BLFS packages (such as compiled <application>Java</application>
35 and <application>OpenOffice</application>) have not been updated to be
36 compilable by <application>GCC</application>-&gcc-version;. Additionally,
37 some pre-compiled packages may require the
38 <application>GCC</application>-&gcc3-version; libraries.</para>
39
40 <bridgehead renderas="sect3">Package Information</bridgehead>
41 <itemizedlist spacing="compact">
42 <listitem>
43 <para>Download (HTTP): <ulink url="&gcc3-download-http;"/></para>
44 </listitem>
45 <listitem>
46 <para>Download (FTP): <ulink url="&gcc3-download-ftp;"/></para>
47 </listitem>
48 <listitem>
49 <para>Download MD5 sum: &gcc3-md5sum;</para>
50 </listitem>
51 <listitem>
52 <para>Download size: &gcc3-size;</para>
53 </listitem>
54 <listitem>
55 <para>Estimated disk space required: &gcc3-buildsize;</para>
56 </listitem>
57 <listitem>
58 <para>Estimated build time: &gcc3-time;</para>
59 </listitem>
60 </itemizedlist>
61
62 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
63 <itemizedlist spacing='compact'>
64 <listitem>
65 <para>Required patch: <ulink
66 url="&patch-root;/gcc-&gcc3-version;-no_fixincludes-1.patch"/></para>
67 </listitem>
68 <listitem>
69 <para>Required patch: <ulink
70 url="&patch-root;/gcc-&gcc3-version;-linkonce-1.patch"/></para>
71 </listitem>
72 </itemizedlist>
73
74 <bridgehead renderas="sect3">GCC-&gcc3-version; Dependencies</bridgehead>
75 <para><xref linkend="dejagnu"/> (required to run the full test suite)</para>
76
77 </sect2>
78
79 <sect2 role="installation">
80 <title>Installation of GCC-&gcc3-version;</title>
81
82 <para>Install <application>GCC</application>-&gcc3-version; by running
83 the following commands:</para>
84
85<screen><userinput>patch -Np1 -i ../gcc-&gcc3-version;-no_fixincludes-1.patch &amp;&amp;
86patch -Np1 -i ../gcc-&gcc3-version;-linkonce-1.patch &amp;&amp;
87mkdir ../gcc-build &amp;&amp;
88cd ../gcc-build &amp;&amp;
89../gcc-&gcc3-version;/configure \
90 --prefix=/opt/gcc-&gcc3-version; \
91 --enable-shared --enable-languages=c,c++ \
92 --enable-threads=posix &amp;&amp;
93make bootstrap</userinput></screen>
94
95 <para>If desired, run the test suite using the following commands. The
96 <command>test_summary</command> commands create log files which can be
97 compared to known good results located at <ulink
98 url="http://linuxfromscratch.org/~randy/gcc-334-lfs-6.0-test_summary.log"/>
99 and <ulink
100 url="http://linuxfromscratch.org/~randy/gcc-334-lfs-6.0-test_summary_short.log"/>.</para>
101
102<screen><userinput>make -k check &amp;&amp;
103../gcc-3.3.4/contrib/test_summary >test_summary.log 2>&amp;1 &amp;&amp;
104../gcc-3.3.4/contrib/test_summary | \
105 grep -A7 Summ >test_summary_short.log 2>&amp;1</userinput></screen>
106
107 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
108
109<screen role="root"><userinput>make install &amp;&amp;
110mv /opt/gcc-&gcc3-version;/lib/libstdc++.so.5* /usr/lib &amp;&amp;
111ln -sf /usr/lib/libstdc++.so.5.0.6 /opt/gcc-&gcc3-version;/lib &amp;&amp;
112ln -sf libstdc++.so.5.0.6 /opt/gcc-&gcc3-version;/lib/libstdc++.so.5 &amp;&amp;
113chown -R root:root \
114 /opt/gcc-&gcc3-version;/lib/gcc-lib/i686-pc-linux-gnu/&gcc3-version;/include</userinput></screen>
115
116 </sect2>
117
118 <sect2 role="commands">
119 <title>Command Explanations</title>
120
121 <para><command>mkdir ../gcc-build; cd ../gcc-build</command>: The
122 <application>GCC</application> development team recommends
123 building in a separate directory.</para>
124
125 <para><parameter>--enable-shared --enable-languages=c,c++
126 --enable-threads=posix</parameter>: Configures
127 <application>GCC</application> to build the
128 <application>C</application> and <application>C++</application> compilers and
129 enable the related <application>C++</application> options.</para>
130
131 <para><command>mv /opt/gcc-&gcc3-version;/lib/libstdc++.so.5*
132 /usr/lib</command>: Moves the <application>C++</application> libraries to the
133 standard lib directory to avoid having to add
134 <userinput>/opt/gcc-&gcc3-version;/lib</userinput> to
135 <filename>/etc/ld.so.conf</filename>.</para>
136
137 </sect2>
138
139 <sect2 role="configuration">
140 <title>Configuring GCC-&gcc3-version;</title>
141
142 <sect3>
143 <title>Configuration information</title>
144
145 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="../../lib-config.xml"/>
146
147 <para>If you only need the GCC-&gcc3-version; libraries, you may delete
148 <filename>/opt/gcc-&gcc3-version;</filename>.</para>
149
150 <para>Whenever you need to use GCC-&gcc3-version; instead of your system
151 installed compiler, add
152 <filename class="directory">/opt/gcc-&gcc3-version;/bin</filename> to the
153 front of your <envar>PATH</envar> or (preferably) set the <envar>CC</envar>
154 environment variable before compiling the concerned package.</para>
155
156 </sect3>
157
158 </sect2>
159
160 <sect2 role="content">
161 <title>Contents</title>
162
163 <segmentedlist>
164 <segtitle>Installed Programs</segtitle>
165 <segtitle>Installed Libraries</segtitle>
166 <segtitle>Installed Directories</segtitle>
167
168 <seglistitem>
169 <seg>c++, cpp, g++, gcc, gccbug, gcov, and architecture specific
170 names of these programs.</seg>
171 <seg>libgcc_s.so, libiberty.a, libstdc++.[a,so], libsupc++.a, and other
172 support libraries and files.</seg>
173 <seg>/opt/gcc-&gcc3-version;</seg>
174 </seglistitem>
175 </segmentedlist>
176
177 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
178
179 <para>The GCC-&gcc3-version; package contains the
180 <command>gcc</command>-&gcc3-version; <application>C</application> and
181 <application>C++</application> compilers and GCC-&gcc3-version;
182 <filename>libstdc++.so</filename> that is required by some commercial and
183 pre-compiled packages.</para>
184
185 </sect2>
186
187</sect1>
Note: See TracBrowser for help on using the repository browser.