Changeset cad96bf for chapter06


Ignore:
Timestamp:
03/31/2021 10:41:35 AM (3 years ago)
Author:
Xℹ Ruoyao <xry111@…>
Branches:
ml-11.0, multilib
Children:
f5ae110a
Parents:
afdadb5
git-author:
Thomas Trepl <thomas@…> (05/11/2019 05:34:27 AM)
git-committer:
Xℹ Ruoyao <xry111@…> (03/31/2021 10:41:35 AM)
Message:

Merge upstream changes

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

Location:
chapter06
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • chapter06/check.xml

    rafdadb5 rcad96bf  
    4343    <para>Prepare Check for compilation:</para>
    4444
    45 <screen><userinput remap="configure">./configure --prefix=/usr</userinput></screen>
     45<screen><userinput remap="configure">./configure --prefix=/usr \
     46            --docdir=/usr/share/doc/check-&check-version;</userinput></screen>
    4647
    4748    <para>Build the package:</para>
  • chapter06/coreutils.xml

    rafdadb5 rcad96bf  
    101101    <para>Compile the package:</para>
    102102
    103 <screen><userinput remap="make">FORCE_UNSAFE_CONFIGURE=1 make</userinput></screen>
     103<screen><userinput remap="make">make</userinput></screen>
    104104
    105105    <para>Skip down to <quote>Install the
  • chapter06/gcc.xml

    rafdadb5 rcad96bf  
    8282             --disable-multilib       \
    8383             --disable-bootstrap      \
    84              --disable-libmpx         \
    8584             --with-system-zlib</userinput></screen>
    8685<screen arch="ml_32"><userinput remap="configure">SED=sed                               \
     
    9089             --with-multilib-list=m32,m64      \
    9190             --disable-bootstrap               \
    92              --disable-libmpx                  \
    9391             --with-system-zlib</userinput></screen>
    9492<screen arch="ml_x32"><userinput remap="configure">SED=sed                               \
     
    9896             --with-multilib-list=mx32,m64     \
    9997             --disable-bootstrap               \
    100              --disable-libmpx                  \
    10198             --with-system-zlib</userinput></screen>
    10299<screen arch="ml_all"><userinput remap="configure">SED=sed                               \
     
    106103             --with-multilib-list=m32,mx32,m64 \
    107104             --disable-bootstrap               \
    108              --disable-libmpx                  \
    109105             --with-system-zlib</userinput></screen>
    110106
     
    124120        </listitem>
    125121      </varlistentry>
    126  
     122      <!--
    127123      <varlistentry>
    128         <term><parameter>--disable-libmpx</parameter></term>
     124        <term><parameter>- -disable-libmpx</parameter></term>
    129125        <listitem>
    130126          <para>This switch tells GCC to not build mpx (Memory Protection
     
    133129        </listitem>
    134130      </varlistentry>
    135 
     131      -->
    136132      <varlistentry>
    137133        <term><parameter>--with-system-zlib</parameter></term>
     
    157153<screen><userinput remap="test">ulimit -s 32768</userinput></screen>
    158154
    159     <para>Remove one test known to cause a problem:</para>
    160 
    161 <screen><userinput remap="test">rm ../gcc/testsuite/g++.dg/pr83239.C</userinput></screen>
    162 
    163155    <para>Test the results as a non-privileged user, but do not stop at errors:</para>
    164156
     
    179171    <para>Six tests related to get_time are known to fail.  These are
    180172    apparantly related to the en_HK locale.</para>
     173
     174    <para>Two tests named lookup.cc and reverse.cc in experimental/net
     175    are known to fail in LFS chroot environment because they require
     176    /etc/hosts and iana-etc.</para>
     177
     178    <para>Two tests named pr57193.c and pr90178.c are known to fail.</para>
    181179
    182180    <para>A few unexpected failures cannot always be avoided. The GCC developers
  • chapter06/systemd.xml

    rafdadb5 rcad96bf  
    5353    create links to the libraries in the approprite location:</para>
    5454
    55 <screen><userinput remap="pre">for file in /tools/lib/lib{blkid,mount,uuid}*; do
     55<screen><userinput remap="pre">for file in /tools/lib/lib{blkid,mount,uuid}.so*; do
    5656    ln -sf $file /usr/lib/
    5757done</userinput></screen>
Note: See TracChangeset for help on using the changeset viewer.