Ignore:
Timestamp:
06/03/2003 10:25:25 PM (21 years ago)
Author:
Gerard Beekmans <gerard@…>
Branches:
10.0, 10.0-rc1, 10.1, 10.1-rc1, 11.0, 11.0-rc1, 11.0-rc2, 11.0-rc3, 11.1, 11.1-rc1, 11.2, 11.2-rc1, 11.3, 11.3-rc1, 12.0, 12.0-rc1, 12.1, 12.1-rc1, 6.0, 6.1, 6.1.1, 6.3, 6.4, 6.5, 6.6, 6.7, 6.8, 7.0, 7.1, 7.2, 7.3, 7.4, 7.5, 7.5-systemd, 7.6, 7.6-systemd, 7.7, 7.7-systemd, 7.8, 7.8-systemd, 7.9, 7.9-systemd, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, arm, bdubbs/gcc13, ml-11.0, multilib, renodr/libudev-from-systemd, s6-init, trunk, v5_0, v5_1, v5_1_1, xry111/arm64, xry111/arm64-12.0, xry111/clfs-ng, xry111/lfs-next, xry111/loongarch, xry111/loongarch-12.0, xry111/loongarch-12.1, xry111/mips64el, xry111/pip3, xry111/rust-wip-20221008, xry111/update-glibc
Children:
592cfd6
Parents:
8f999de5
Message:

Applied Alex' "apapting-the-text.patch" patch

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2639 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

File:
1 edited

Legend:

Unmodified
Added
Removed
  • chapter05/glibc-inst.xml

    r8f999de5 r66e4325  
    1616
    1717<para>Basically, compiling Glibc in any other way than the book suggests
    18 is putting your system at a very high risk.</para>
     18is putting the stability of your system at risk.</para>
    1919
    2020<para>Though it is a harmless message, the install stage of Glibc will
    21 complain about the presence of /etc/ld.so.conf (or lack thereof). Fix
    22 this annoying little error:</para>
     21complain about the absence of <filename>/etc/ld.so.conf</filename>.
     22Fix this annoying little error with:</para>
    2323
    2424<para><screen><userinput>mkdir /stage1/etc
     
    3939&nbsp;&nbsp;&nbsp;&nbsp;--without-gd</userinput></screen></para>
    4040
    41 <para>The meaning of the configure options are:</para>
     41<para>The meaning of the new configure options is:</para>
    4242
    4343<itemizedlist>
     
    4747
    4848<listitem><para><userinput>--enable-add-ons</userinput>: This enables any
    49 add-ons that we installed with Glibc, in our case Linuxthreads.</para></listitem>
     49add-ons that were installed with Glibc, in our case Linuxthreads.</para></listitem>
    5050
    51 <listitem><para><userinput>--libexecdir=/usr/bin</userinput>: This will
    52 cause the <filename>pt_chown</filename> program to be installed in the
    53 <filename>/usr/bin</filename> directory.</para></listitem>
     51<listitem><para><userinput>--with-binutils=/stage1/bin</userinput> and
     52<userinput>--with-headers=/stage1/include</userinput>: Strictly speaking
     53these switches are not required. But they ensure nothing can go wrong with
     54regard to what kernel headers and Binutils programs get used during the
     55Glibc build.</para></listitem>
     56
     57<listitem><para><userinput> --without-gd</userinput>: This switch ensures
     58that we don't build the <userinput>memusagestat</userinput> program, which
     59strangely enough insists on linking against the host's libraries (libgd,
     60libpng, libz, and so forth).</para></listitem>
    5461</itemizedlist>
    5562
     
    7784make install</userinput></screen></para>
    7885
    79 <para>The locales (used by Glibc to make your Linux system talk in a different
    80 language) weren't installed when you ran the previous command, so we have to
    81 do that ourselves now:</para>
     86<para>The locales (used by Glibc to make your Linux system respond in a
     87different language) weren't installed when you ran the previous command,
     88so we have to do that ourselves now:</para>
    8289
    8390<para><screen><userinput>make localedata/install-locales</userinput></screen></para>
    8491
    85 <para>An alternative to running the previous command is to install only those
    86 locales which you need or want. This can be achieved using the localedef
    87 command. Information on this can be found in the <filename>INSTALL</filename>
    88 file in the <filename>glibc-&glibc-version;</filename> tree.</para>
     92<para>An alternative to running the previous command is to install only
     93those locales which you need or want. This can be achieved by using the
     94<userinput>localedef</userinput> command. Information on this can be
     95found in the <filename>INSTALL</filename> file in the
     96<filename>glibc-&glibc-version;</filename> tree.</para>
    8997
    9098</sect2>
Note: See TracChangeset for help on using the changeset viewer.