Changeset 6a123d05


Ignore:
Timestamp:
08/04/2021 02:46:44 AM (3 years ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
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, 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:
4350669
Parents:
d04ce15 (diff), 99b2938 (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:

Merge branch 'trunk' of git.linuxfromscratch.org:lfs into trunk

Files:
5 edited

Legend:

Unmodified
Added
Removed
  • chapter07/createfiles.xml

    rd04ce15 r6a123d05  
    4949
    5050<screen><userinput>cat &gt; /etc/hosts &lt;&lt; EOF
    51 "127.0.0.1 localhost $(hostname)"
     51127.0.0.1  localhost $(hostname)
    5252::1        localhost
    5353EOF</userinput></screen>
  • chapter08/bash.xml

    rd04ce15 r6a123d05  
    4343    <para>Prepare Bash for compilation:</para>
    4444
    45 <screen><userinput remap="configure">./configure --prefix=/usr                    \
     45<screen><userinput remap="configure">./configure --prefix=/usr                      \
    4646            --docdir=/usr/share/doc/bash-&bash-version; \
    47             --without-bash-malloc            \
     47            --without-bash-malloc              \
    4848            --with-installed-readline</userinput></screen>
    4949
  • chapter08/gcc.xml

    rd04ce15 r6a123d05  
    122122    <ulink url="https://gcc.gnu.org/ml/gcc-testresults/"/>.</para>
    123123
    124  <!--    <para>In g++, three tests in constexpr-52830 are known to fail and
    125     also to be treated as unexpected successes (XPASS).  This is because
    126     an <quote>internal compiler error</quote> on this test is fixed, but
    127     the compiler still rejects some valid code.</para>
    128  -->
    129     <!--  https://gcc.gnu.org/bugzilla/show_bug.cgi?id=96322
    130           https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71367 -->
     124    <!-- https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101081 -->
     125    <para>Eight tests related to analyzer are known to fail.</para>
     126
     127    <!-- https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101749 -->
     128    <para>Seven tests related to <filename>pr59063-2.c</filename> are known
     129    to fail.</para>
     130
     131    <!-- https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101751 -->
     132    <para>One test named <filename>asan_test.C</filename> is known to
     133    fail.</para>
     134
     135    <!-- https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100117 -->
     136    <para>In libstdc++, one test named <filename>49745.cc</filename> is
     137    known to fail because the header dependencies in glibc have have
     138    changed.</para>
    131139
    132140    <para>In libstdc++, one numpunct test and six tests related to get_time are
     
    134142    changed but libstdc++ does not currently support those changes.</para>
    135143
    136 <!--<para>Additionally the following tests related to the following files
    137     are known to fail with glibc-2.33: asan_test.C, co-ret-17-void-ret-coro.C,
    138     pr95519-05-gro.C, pr80166.c.</para>
    139 -->
    140 
    141 <!-- don't fail anymore after the move of iana-etc and /etc/hosts
    142     <para>Two tests named lookup.cc and reverse.cc in experimental/net
    143     are known to fail in LFS chroot environment because they require
    144     /etc/hosts and iana-etc.</para>
    145 -->
    146144    <para>A few unexpected failures cannot always be avoided. The GCC developers
    147145    are usually aware of these issues, but have not resolved them yet.
  • chapter08/glibc.xml

    rd04ce15 r6a123d05  
    940940        <term><filename class="libraryfile">libutil</filename></term>
    941941        <listitem>
    942           <para>>Dummy library containing no functions. Previously contained
     942          <para>Dummy library containing no functions. Previously contained
    943943          code for <quote>standard</quote> functions used in
    944944          many different Unix utilities. These functions are now in
  • chapter08/strippingagain.xml

    rd04ce15 r6a123d05  
    4444
    4545<!--<screen><userinput>save_lib="ld-2.25.so libc-2.25.so libpthread-2.25.so libthread_db-1.0.so"-->
    46       <screen><userinput>save_usrlib="ld-linux-x86-64.so.2
     46<screen><userinput>save_usrlib="ld-linux-x86-64.so.2
    4747             libc.so.6
    48              libpthread.so.6
    49              libthread_db.so
     48             libthread_db.so.1
    5049             libquadmath.so.&libquadmath-version;
    51              libstdc++.so.6
     50             libstdc++.so.&libstdcpp-version;
    5251             libitm.so.&libitm-version;
    5352             libatomic.so.&libatomic-version;"
     
    6564
    6665online_usrbin="bash find strip"
    67 online_usrlib="libbfd.so
    68                libdl.so.2
    69                libhistory.so
    70                libncursesw.so
    71                libm.so.6
    72                libreadline.so
    73                libz.so
     66online_usrlib="libbfd-&binutils-version;.so
     67               libhistory.so.&readline-version;
     68               libncursesw.so.&ncurses-version;
     69               libm.so.6
     70               libreadline.so.&readline-version;
     71               libz.so.&zlib-version;
    7472               $(cd /usr/lib; find libnss*.so* -type f)"
    7573
Note: See TracChangeset for help on using the changeset viewer.