source: general/prog/gcc2/gcc2-inst.xml@ d10f793

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 v1_0 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 d10f793 was f22f96e9, checked in by Larry Lawrence <larry@…>, 21 years ago

edited general libs

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

  • Property mode set to 100644
File size: 1.8 KB
Line 
1<sect2>
2<title>Installation of gcc</title>
3
4<para>Apply the two patches, one to fix compilation and the other to stop the
5fixincludes script from executing.</para>
6
7<para><screen><userinput>patch -Np1 -i ../gcc-&gcc2-version;-1.patch &amp;&amp;
8patch -Np1 -i ../gcc-&gcc2-version;-no-fixinc.patch</userinput></screen></para>
9
10<para>The gcc development team recommends building in a seperate directory.</para>
11
12<para><screen><userinput>mkdir ../gcc-build &amp;&amp;
13cd ../gcc-build</userinput></screen></para>
14
15<para>Configure gcc to build the c and c++ compilers and enable the related c++
16options.</para>
17<para><screen><userinput>../gcc-&gcc2-version;/configure \
18--prefix=/opt/gcc2 \
19--enable-shared --enable-languages=c,c++ \
20--enable-threads=posix</userinput></screen></para>
21
22<para>Compile and install gcc and remove unneeded directories (adjust the
23machine triplet to match your architecture).</para>
24<para><screen><userinput>make bootstrap &amp;&amp;
25make install &amp;&amp;
26ln -sf gcc /opt/gcc2/bin/cc &amp;&amp;
27rm -rf /opt/gcc2/{i686-pc-linux-gnu,info,man}</userinput></screen></para>
28
29<para>Make note of the library that is installed.</para>
30<para><screen><userinput>L=`find /opt/gcc2/lib -name "*libstdc++*.so" -type f` &amp;&amp;
31IL=`basename $L`</userinput></screen></para>
32
33<para>Move the c++ libraries to the standard lib directory to avoid having to
34add /opt/gcc2/lib to <userinput>/etc/ld.so.conf</userinput>.</para>
35
36<para><screen><userinput>for i in /opt/gcc2/lib/*.so*; do mv -f $i /usr/lib;
37ln -sf /usr/lib/`basename $i` /opt/gcc2/lib; done</userinput></screen></para>
38
39<para>Create symlinks required by commercial and precompiled packages.</para>
40<para><screen><userinput>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</userinput></screen></para>
43
44</sect2>
Note: See TracBrowser for help on using the repository browser.