Changeset 9d18322


Ignore:
Timestamp:
09/13/2022 10:30:10 PM (20 months ago)
Author:
Thomas Trepl (Moody) <thomas@…>
Branches:
multilib
Children:
a28ea0a
Parents:
21a9c25f (diff), 95789f1 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Automatic merge of trunk into multilib

Location:
chapter08
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • chapter08/bash.xml

    r21a9c25f r9d18322  
    8888EOF</userinput></screen>
    8989
     90    <para>Several tests invoke the obsolete <command>egrep</command>
     91    command and trigger a warning.  These warnings
     92    should be ignored.</para>
     93
    9094    <para>Install the package:</para>
    9195
  • chapter08/gcc.xml

    r21a9c25f r9d18322  
    248248  <para>Now make sure that we're setup to use the correct start files:</para>
    249249
    250 <screen><userinput>grep -o '/usr/lib.*/crt[1in].*succeeded' dummy.log</userinput></screen>
     250<screen><userinput>grep -E -o '/usr/lib.*/S?crt[1in].*succeeded' dummy.log</userinput></screen>
    251251
    252252  <para>The output of the last command should be:</para>
    253253
    254 <screen><computeroutput>/usr/lib/gcc/x86_64-pc-linux-gnu/&gcc-version;/../../../../lib/crt1.o succeeded
     254<screen><computeroutput>/usr/lib/gcc/x86_64-pc-linux-gnu/&gcc-version;/../../../../lib/Scrt1.o succeeded
    255255/usr/lib/gcc/x86_64-pc-linux-gnu/&gcc-version;/../../../../lib/crti.o succeeded
    256256/usr/lib/gcc/x86_64-pc-linux-gnu/&gcc-version;/../../../../lib/crtn.o succeeded</computeroutput></screen>
  • chapter08/libtool.xml

    r21a9c25f r9d18322  
    5353<para>To test the results<!--(about 11.0 SBU)-->, issue:</para>
    5454
    55 <screen><userinput remap="test">make check</userinput></screen>
     55<screen><userinput remap="test">make -k check</userinput></screen>
    5656
    5757    <note><para>The test time for libtool can be reduced significantly on a
     
    6262
    6363    <para>Five tests are known to fail in the LFS build environment due
    64     to a circular dependency, but all tests pass if rechecked after
    65     automake is installed.</para>
     64    to a circular dependency, but these tests pass if rechecked after
     65    automake is installed.  Additionally, with grep-3.8, two tests will
     66    trigger a warning for non-POSIX regular expressions and fail.</para>
    6667
    6768    <para>Install the package:</para>
  • chapter08/ncurses.xml

    r21a9c25f r9d18322  
    132132    from the library file.  Install the package with
    133133    <literal>DESTDIR</literal>, and replace the library file correctly using
    134     <command>install</command> command.  A useless static archive which is
    135     not handled by <command>configure</command> is also removed:</para>
     134    <command>install</command> command:</para>
    136135
    137136<screen><userinput remap="install">make DESTDIR=$PWD/dest install
     
    305304           libmenuw.so,
    306305           libncursesw.so,
     306           libncurses++w.so,
    307307           libpanelw.so, and their non-wide-character counterparts without "w"
    308308              in the library names.</seg>
     
    459459      </varlistentry>
    460460
     461      <varlistentry id="libncurses__w">
     462        <term><filename class="libraryfile">libncurses++w</filename></term>
     463        <listitem>
     464          <para>Contains C++ binding for other libraries in this package</para>
     465          <indexterm zone="ch-system-ncurses libncurses__w">
     466            <primary sortas="c-libncurses++w">libncurses++w</primary>
     467          </indexterm>
     468        </listitem>
     469      </varlistentry>
     470
    461471      <varlistentry id="libformw">
    462472        <term><filename class="libraryfile">libformw</filename></term>
Note: See TracChangeset for help on using the changeset viewer.