source: general/prog/gcc2/gcc2-inst.xml@ 13f51bbc

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.0 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 v5_0 v5_0-pre1 v5_1 v5_1-pre1 xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since 13f51bbc was 13f51bbc, checked in by Larry Lawrence <larry@…>, 21 years ago

ruby, tcl, tk tagging

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

  • Property mode set to 100644
File size: 2.0 KB
Line 
1<sect2>
2<title>Installation of <application><acronym>GCC</acronym></application></title>
3
4<para>Apply the patches:</para>
5
6<screen><userinput><command>patch -Np1 -i ../gcc-&gcc2-version;-2.patch &amp;&amp;
7patch -Np1 -i ../gcc-&gcc2-version;-no-fixinc.patch &amp;&amp;
8patch -Np1 -i ../gcc-&gcc2-version;-returntype-fix.patch</command></userinput></screen>
9
10<para>The <acronym>GCC</acronym> development team recommends building in a
11separate directory.</para>
12
13<screen><userinput><command>mkdir ../gcc-build &amp;&amp;
14cd ../gcc-build</command></userinput></screen>
15
16<para>Configure <acronym>GCC</acronym> to build the
17<application>C</application> and <application>C++</application> compilers and
18enable the related <application>C++</application> options.</para>
19<screen><userinput><command>../gcc-&gcc2-version;/configure \
20--prefix=/opt/gcc-&gcc2-version; \
21--enable-shared --enable-languages=c,c++ \
22--enable-threads=posix</command></userinput></screen>
23
24<para>Compile and install <acronym>GCC</acronym>:</para>
25<screen><userinput><command>make bootstrap &amp;&amp;
26make install</command></userinput></screen>
27
28<para>Make note of the library that is installed.</para>
29<screen><userinput><command>L=`find /opt/gcc-&gcc2-version;/lib -name "*libstdc++*.so" -type f` &amp;&amp;
30IL=`basename $L`</command></userinput></screen>
31
32<para>Move the <application>C++</application> libraries to the standard lib
33directory to avoid having to add <userinput>/opt/gcc-&gcc2-version;/lib
34</userinput> to <filename>/etc/ld.so.conf</filename>.</para>
35
36<screen><userinput><command>for i in /opt/gcc-&gcc2-version;/lib/*.so*; do mv -f $i /usr/lib;
37ln -sf /usr/lib/`basename $i` /opt/gcc-&gcc2-version;/lib; done</command></userinput></screen>
38
39<para>Create symlinks required by commercial and precompiled packages.</para>
40<screen><userinput><command>ln -sf $IL /usr/lib/libstdc++-libc6.1-1.so.2 &amp;&amp;
41ln -sf $IL /usr/lib/libstdc++-libc6.2-2.so.3 &amp;&amp;
42ln -sf $IL /usr/lib/libstdc++-libc6.3-2.so.3</command></userinput></screen>
43
44</sect2>
Note: See TracBrowser for help on using the repository browser.