source: general/prog/gcc3.xml@ bccbdaea

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.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 bccbdaea was 4096f25, checked in by Randy McMurchy <randy@…>, 19 years ago

Updated GCC-3 version to 3.3.6

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

  • Property mode set to 100644
File size: 6.8 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 "6936616a967da5a0b46f1e7424a06414">
10 <!ENTITY gcc3-size "24 MB">
11 <!ENTITY gcc3-buildsize "433 MB (includes running the test suite)">
12 <!ENTITY gcc3-time "5.2 SBU (additional 11.2 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 packages have not been updated to be compiled by
35 <application>GCC</application>-&gcc-version;. Additionally,
36 some pre-compiled packages may require the
37 <application>GCC</application>-&gcc3-version; libraries at run-time.</para>
38
39 <bridgehead renderas="sect3">Package Information</bridgehead>
40 <itemizedlist spacing="compact">
41 <listitem>
42 <para>Download (HTTP): <ulink url="&gcc3-download-http;"/></para>
43 </listitem>
44 <listitem>
45 <para>Download (FTP): <ulink url="&gcc3-download-ftp;"/></para>
46 </listitem>
47 <listitem>
48 <para>Download MD5 sum: &gcc3-md5sum;</para>
49 </listitem>
50 <listitem>
51 <para>Download size: &gcc3-size;</para>
52 </listitem>
53 <listitem>
54 <para>Estimated disk space required: &gcc3-buildsize;</para>
55 </listitem>
56 <listitem>
57 <para>Estimated build time: &gcc3-time;</para>
58 </listitem>
59 </itemizedlist>
60
61 <bridgehead renderas="sect3">Additional Downloads</bridgehead>
62 <itemizedlist spacing='compact'>
63 <listitem>
64 <para>Required patch: <ulink
65 url="&patch-root;/gcc-&gcc3-version;-no_fixincludes-1.patch"/></para>
66 </listitem>
67 <listitem>
68 <para>Required patch: <ulink
69 url="&patch-root;/gcc-&gcc3-version;-linkonce-1.patch"/></para>
70 </listitem>
71 </itemizedlist>
72
73 <bridgehead renderas="sect3">GCC-&gcc3-version; Dependencies</bridgehead>
74 <para><xref linkend="dejagnu"/> (required to run the full test suite)</para>
75
76 </sect2>
77
78 <sect2 role="installation">
79 <title>Installation of GCC-&gcc3-version;</title>
80
81 <para>Install <application>GCC</application>-&gcc3-version; by running
82 the following commands:</para>
83
84<screen><userinput>patch -Np1 -i ../gcc-&gcc3-version;-no_fixincludes-1.patch &amp;&amp;
85patch -Np1 -i ../gcc-&gcc3-version;-linkonce-1.patch &amp;&amp;
86mkdir ../gcc-build &amp;&amp;
87cd ../gcc-build &amp;&amp;
88../gcc-&gcc3-version;/configure --prefix=/opt/gcc-&gcc3-version; \
89 --enable-shared --enable-languages=c,c++ --enable-threads=posix &amp;&amp;
90make bootstrap</userinput></screen>
91
92 <para>If desired, run the test suite using the following commands. The
93 <command>test_summary</command> commands create log files which can be
94 compared to known good results located at <ulink
95 url="http://linuxfromscratch.org/~randy/gcc-336_LFS-6.1_test.txt"/>.</para>
96
97<screen><userinput>make -k check &amp;&amp;
98../gcc-&gcc3-version;/contrib/test_summary >test_summary.log 2>&amp;1 &amp;&amp;
99../gcc-&gcc3-version;/contrib/test_summary | \
100 grep -A7 Summ >test_summary_short.log 2>&amp;1</userinput></screen>
101
102 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
103
104<screen role="root"><userinput>make install &amp;&amp;
105mv -v /opt/gcc-&gcc3-version;/lib/libstdc++.so.5* /usr/lib &amp;&amp;
106ln -v -sf /usr/lib/libstdc++.so.5.0.7 /opt/gcc-&gcc3-version;/lib &amp;&amp;
107ln -v -sf libstdc++.so.5.0.7 /opt/gcc-&gcc3-version;/lib/libstdc++.so.5 &amp;&amp;
108chown -v -R root:root \
109 /opt/gcc-&gcc3-version;/lib/gcc-lib/i686-pc-linux-gnu/&gcc3-version;/include</userinput></screen>
110
111 </sect2>
112
113 <sect2 role="commands">
114 <title>Command Explanations</title>
115
116 <para><command>mkdir ../gcc-build; cd ../gcc-build</command>: The
117 <application>GCC</application> development team recommends
118 building in a separate directory.</para>
119
120 <para><parameter>--enable-shared --enable-languages=c,c++
121 --enable-threads=posix</parameter>: Configures
122 <application>GCC</application> to build the
123 <application>C</application> and <application>C++</application> compilers
124 and enable the related <application>C++</application> options.</para>
125
126 <para><command>mv -v /opt/gcc-&gcc3-version;/lib/libstdc++.so.5*
127 /usr/lib</command>: Moves the <application>C++</application> library to the
128 standard lib directory to avoid having to add
129 <userinput>/opt/gcc-&gcc3-version;/lib</userinput> to
130 <filename>/etc/ld.so.conf</filename>.</para>
131
132 </sect2>
133
134 <sect2 role="configuration">
135 <title>Configuring GCC-&gcc3-version;</title>
136
137 <sect3>
138 <title>Configuration information</title>
139
140 <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="../../lib-config.xml"/>
141
142 <para>If you only need the GCC-&gcc3-version; C++ library, you may delete
143 <filename>/opt/gcc-&gcc3-version;</filename>.</para>
144
145 <para>Whenever you need to use GCC-&gcc3-version; instead of your system
146 installed compiler, add
147 <filename class="directory">/opt/gcc-&gcc3-version;/bin</filename> to the
148 front of your <envar>PATH</envar> or (preferably) set the <envar>CC</envar>
149 environment variable before compiling the concerned package.</para>
150
151 </sect3>
152
153 </sect2>
154
155 <sect2 role="content">
156 <title>Contents</title>
157
158 <segmentedlist>
159 <segtitle>Installed Programs</segtitle>
160 <segtitle>Installed Libraries</segtitle>
161 <segtitle>Installed Directory</segtitle>
162
163 <seglistitem>
164 <seg>c++, cpp, g++, gcc, gccbug, gcov, and architecture specific
165 names of these programs.</seg>
166 <seg>libgcc_s.so, libiberty.a, libstdc++.[a,so], libsupc++.a, and other
167 support libraries and files.</seg>
168 <seg>/opt/gcc-&gcc3-version;</seg>
169 </seglistitem>
170 </segmentedlist>
171
172 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
173
174 <para>The GCC-&gcc3-version; package contains the
175 <command>gcc</command>-&gcc3-version; <application>C</application> and
176 <application>C++</application> compilers and the GCC-&gcc3-version;
177 <filename>libstdc++.so</filename> library that is required by some
178 commercial and pre-compiled packages.</para>
179
180 </sect2>
181
182</sect1>
Note: See TracBrowser for help on using the repository browser.