Changeset cb23c1a for chapter05


Ignore:
Timestamp:
01/20/2014 01:18:30 AM (10 years ago)
Author:
Bruce Dubbs <bdubbs@…>
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, 7.5, 7.6, 7.7, 7.8, 7.9, 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, 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:
053b206
Parents:
cde2ae7
Message:

Added a Chapter 5 build of util-linux in preparation for
moving the Chapter 6 build to after udev. This satisfies a circular
dependency. This is not the complete fix as this build has not yet
been incorporated into Chapter 6.

Mount /run as a tmpfs for Chapter 6. This allows use by test processes
during Chapter 6 without carying the files over to the new system.

Other minor cleanups.

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

Location:
chapter05
Files:
1 added
1 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • chapter05/chapter05.xml

    rcde2ae7 rcb23c1a  
    4444  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="tar.xml"/>
    4545  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="texinfo.xml"/>
     46  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="util-linux.xml"/>
    4647  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="xz.xml"/>
    47 <!--  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="util-linux-ng.xml"/>-->
    4848  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="stripping.xml"/>
    4949  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="changingowner.xml"/>
  • chapter05/ncurses.xml

    rcde2ae7 rcb23c1a  
    4646    <para>Prepare Ncurses for compilation:</para>
    4747
    48 <screen><userinput remap="configure">./configure --prefix=/tools --with-shared \
    49     --without-debug --without-ada --enable-overwrite</userinput></screen>
     48<screen><userinput remap="configure">
     49./configure --prefix=/tools \
     50            --with-shared   \
     51            --without-debug \
     52            --without-ada   \
     53            --enable-widec  \
     54            --enable-overwrite</userinput></screen>
    5055
    5156    <variablelist>
     
    6974          ensure that other packages can find the Ncurses headers
    7075          successfully.</para>
     76        </listitem>
     77      </varlistentry>
     78
     79      <varlistentry>
     80        <term><parameter>--enable-widec</parameter></term>
     81        <listitem>
     82          <para>This switch causes wide-character libraries (e.g., <filename
     83          class="libraryfile">libncursesw.so.&ncurses-version;</filename>)
     84          to be built instead of normal ones (e.g., <filename
     85          class="libraryfile">libncurses.so.&ncurses-version;</filename>).
     86          These wide-character libraries are usable in both multibyte and
     87          traditional 8-bit locales, while normal libraries work properly
     88          only in 8-bit locales. Wide-character and normal libraries are
     89          source-compatible, but not binary-compatible.</para>
    7190        </listitem>
    7291      </varlistentry>
Note: See TracChangeset for help on using the changeset viewer.