Changeset d8eed9a
- Timestamp:
- 09/20/2003 11:03:02 PM (20 years ago)
- Branches:
- 10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 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/inkscape-core-mods, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/python-mods, qt5new, systemd-11177, systemd-13485, trunk, upgradedb, v5_0, v5_0-pre1, v5_1, v5_1-pre1, xry111/intltool, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
- Children:
- 768bab5
- Parents:
- 9fcf865
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
general/genlib/ispell/ispell-inst.xml
r9fcf865 rd8eed9a 2 2 <title>Installation of <application>ispell</application></title> 3 3 4 <para>The first step is to create local.h.</para>4 <para>The first step is to create <filename>local.h</filename>.</para> 5 5 6 6 <screen><userinput><command>sed -e "s:/usr/local:/usr:g" local.h.linux > local.h</command></userinput></screen> 7 7 8 8 <para>By default, <application>ispell</application> only installs American 9 English dictinoary. To install other languages, check out the config.Xfile10 for the define to append to local.h.</para>9 English dictinoary. To install other languages, check out the <filename>config.X</filename> file 10 for the define to append to <filename>local.h</filename>.</para> 11 11 12 12 <para>Compile and install <application>ispell</application> using the -
general/prog/gcc2/gcc2-config.xml
r9fcf865 rd8eed9a 11 11 12 12 <para>If you only need the gcc-&gcc2-version; libraries, you may delete 13 <filename>/opt/gcc 2</filename>.</para>13 <filename>/opt/gcc-&gcc2-version;</filename>.</para> 14 14 15 15 <para>Whenever you need to use gcc-&gcc2-version; instead of you system installed compiler, 16 add <filename class="directory">/opt/gcc 2/bin</filename> to the front of your17 <envar>PATH</envar> before compiling the concerned16 add <filename class="directory">/opt/gcc-&gcc2-version;/bin</filename> to the front of your 17 <envar>PATH</envar> or (preferably) set the <envar>CC</envar> environment variable before compiling the concerned 18 18 package.</para> 19 19 -
general/prog/gcc2/gcc2-inst.xml
r9fcf865 rd8eed9a 2 2 <title>Installation of gcc</title> 3 3 4 <para>Apply the two patches, one to fix compilation and the other to stop the 5 fixincludes script from executing.</para> 4 <para>Apply the patches:</para> 6 5 7 <para><screen><userinput>patch -Np1 -i ../gcc-&gcc2-version;-1.patch && 8 patch -Np1 -i ../gcc-&gcc2-version;-no-fixinc.patch</userinput></screen></para> 6 <para><screen><userinput>patch -Np1 -i ../gcc-&gcc2-version;-2.patch && 7 patch -Np1 -i ../gcc-&gcc2-version;-no-fixinc.patch && 8 patch -Np1 -i ../gcc-&gcc2-version;-returntype-fix.patch</userinput></screen></para> 9 9 10 10 <para>The gcc development team recommends building in a separate directory.</para> … … 16 16 options.</para> 17 17 <para><screen><userinput>../gcc-&gcc2-version;/configure \ 18 --prefix=/opt/gcc 2\18 --prefix=/opt/gcc-&gcc2-version; \ 19 19 --enable-shared --enable-languages=c,c++ \ 20 20 --enable-threads=posix</userinput></screen></para> 21 21 22 <para>Compile and install gcc and remove unneeded directories (adjust the 23 machine triplet to match your architecture).</para> 22 <para>Compile and install gcc:</para> 24 23 <para><screen><userinput>make bootstrap && 25 make install && 26 ln -sf gcc /opt/gcc2/bin/cc && 27 rm -rf /opt/gcc2/{i686-pc-linux-gnu,info,man}</userinput></screen></para> 24 make install</userinput></screen></para> 28 25 29 26 <para>Make note of the library that is installed.</para> 30 <para><screen><userinput>L=`find /opt/gcc 2/lib -name "*libstdc++*.so" -type f` &&27 <para><screen><userinput>L=`find /opt/gcc-&gcc2-version;/lib -name "*libstdc++*.so" -type f` && 31 28 IL=`basename $L`</userinput></screen></para> 32 29 33 30 <para>Move the C++ libraries to the standard lib directory to avoid having to 34 add <filename>/opt/gcc 2/lib</filename> to31 add <filename>/opt/gcc-&gcc2-version;/lib</filename> to 35 32 <filename>/etc/ld.so.conf</filename>.</para> 36 33 37 <para><screen><userinput>for i in /opt/gcc 2/lib/*.so*; do mv -f $i /usr/lib;38 ln -sf /usr/lib/`basename $i` /opt/gcc 2/lib; done</userinput></screen></para>34 <para><screen><userinput>for i in /opt/gcc-&gcc2-version;/lib/*.so*; do mv -f $i /usr/lib; 35 ln -sf /usr/lib/`basename $i` /opt/gcc-&gcc2-version;/lib; done</userinput></screen></para> 39 36 40 37 <para>Create symlinks required by commercial and precompiled packages.</para> -
introduction/welcome/changelog.xml
r9fcf865 rd8eed9a 10 10 11 11 <itemizedlist> 12 13 <listitem><para>September 20th, 2003 [tushar]: Synchronized gcc-2.95.3 14 with LFS instructions.</para></listitem> 12 15 13 16 <listitem><para>September 20th, 2003 [larry]: updated bootdisk for
Note:
See TracChangeset
for help on using the changeset viewer.