Changeset c2fa5fc


Ignore:
Timestamp:
08/29/2024 06:58:29 AM (3 weeks ago)
Author:
Xi Ruoyao <xry111@…>
Branches:
xry111/loongarch, xry111/loongarch-12.2
Children:
0b6e5f4
Parents:
5f54f8e (diff), 73f24ad (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 remote-tracking branch 'origin/trunk' into xry111/loongarch

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • chapter01/changelog.xml

    r5f54f8e rc2fa5fc  
    4141    -->
    4242
    43     <listitem>
     43    <listitem revision='sysv'>
    4444      <para>2024-08-23</para>
    4545      <itemizedlist>
     
    5151    </listitem>
    5252
    53     <listitem>
     53    <listitem revision='sysv'>
    5454      <para>2024-08-23</para>
    5555      <itemizedlist>
     
    175175          <ulink url='&lfs-ticket-root;5531'>#5531</ulink>.</para>
    176176        </listitem>
    177         <listitem>
     177        <listitem revision='sysv'>
    178178          <para>[bdubbs] - Update to sysklogd-2.6.1. Fixes
    179179          <ulink url='&lfs-ticket-root;5522'>#5522</ulink>.</para>
     
    232232    </listitem>
    233233
    234     <listitem>
     234    <listitem revision='sysv'>
    235235      <para>2024-07-01</para>
    236236      <itemizedlist>
     
    261261          <ulink url='&lfs-ticket-root;5508'>#5508</ulink>.</para>
    262262        </listitem>
    263         <listitem>
     263        <listitem revision='sysv'>
    264264          <para>[bdubbs] - Update to sysklogd-2.5.2. Fixes
    265265          <ulink url='&lfs-ticket-root;5509'>#5509</ulink>.</para>
  • chapter08/gcc.xml

    r5f54f8e rc2fa5fc  
    136136    </important>
    137137
    138    <para>One set of tests in the GCC test suite is known to exhaust the default
    139    stack, so increase the stack size prior to running the tests:</para>
    140 
    141 <screen><userinput remap="test">ulimit -s 32768</userinput></screen>
     138    <para>GCC may need more stack space compiling some extremely complex
     139    code patterns.  As a precaution for the host distros with a tight stack
     140    limit, explicitly set the stack size hard limit to infinite.
     141    On most host distros (and the final LFS system) the hard limit is
     142    infinite by default, but there is no harm done by setting it explicitly.
     143    It's not necessary to change the stack size soft limit because GCC will
     144    automatically set it to an appropriate value, as long as the value does
     145    not exceed the hard limit:</para>
     146
     147<screen><userinput remap="test">ulimit -s -H unlimited</userinput></screen>
    142148
    143149    <para>Now remove/fix several known test failures:</para>
Note: See TracChangeset for help on using the changeset viewer.