Changeset a5c2803 for chapter06


Ignore:
Timestamp:
03/31/2021 10:41:41 AM (3 years ago)
Author:
Xℹ Ruoyao <xry111@…>
Branches:
ml-11.0, multilib
Children:
4c8c128
Parents:
9da9d014
git-author:
Thomas Trepl <thomas@…> (02/06/2021 06:41:29 AM)
git-committer:
Xℹ Ruoyao <xry111@…> (03/31/2021 10:41:41 AM)
Message:

Merge changes from trunk to multilib

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/multilib@12130 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

File:
1 edited

Legend:

Unmodified
Added
Removed
  • chapter06/file.xml

    r9da9d014 ra5c2803  
    5252<screen><userinput remap="pre">mkdir build
    5353pushd build
    54   ../configure
     54  ../configure --disable-bzlib      \
     55               --disable-libseccomp \
     56               --disable-xzlib      \
     57               --disable-zlib
    5558  make
    5659popd</userinput></screen>
     60
     61    <variablelist>
     62      <title>The meaning of the new configure option:</title>
     63
     64      <varlistentry>
     65        <term><parameter>--disable-*</parameter></term>
     66        <listitem>
     67          <para>The configuration script attempts to use some packages from
     68          the host distribution if the corresponding library files exist.
     69          It may cause compilation failure if a library file exists, but
     70          the corresponding header files do not.  These options prevent
     71          using these unneeded capabilities from the host.</para>
     72        </listitem>
     73      </varlistentry>
     74    </variablelist>
    5775
    5876    <para>Prepare File for compilation:</para>
Note: See TracChangeset for help on using the changeset viewer.