Changeset ea6fdf5 for chapter08


Ignore:
Timestamp:
09/13/2023 10:30:12 PM (13 months ago)
Author:
Thomas Trepl <thomas@…>
Branches:
multilib, xry111/multilib
Children:
dc39c7b
Parents:
b0c238ac (diff), b91b12a (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:
2 edited

Legend:

Unmodified
Added
Removed
  • chapter08/glibc.xml

    rb0c238ac rea6fdf5  
    5555
    5656<screen><userinput remap="pre">patch -Np1 -i ../&glibc-memalign-patch;</userinput></screen>
     57
     58    <!-- CVE-2023-4527
     59         https://sourceware.org/bugzilla/show_bug.cgi?id=30842
     60         https://sourceware.org/ml/libc-alpha/2023-September/151522.html -->
     61    <para>Then fix a security vulnerability exploitable when the
     62    <option>no-aaaa</option> option is used in
     63    <filename>/etc/resolv.conf</filename>:</para>
     64
     65<screen><userinput remap="pre">sed \
     66  -E "/__res_context_search/\
     67      {N;N;s/(search \(([^,]*,){6}[^,]*)NULL/\1\&amp;alt_dns_packet_buffer/}" \
     68  -i resolv/nss_dns/dns-host.c</userinput></screen>
    5769
    5870    <para>The Glibc documentation recommends building Glibc
  • chapter08/stripping.xml

    rb0c238ac rea6fdf5  
    3030  dynamically linked binaries and shared libraries).</para>
    3131
    32   <para>The debugging symbols from selected libraries are preserved
    33   in separate files.  That debugging information is needed to run
    34   regression tests with <ulink
     32  <!-- TODO: Zstd is better than Zlib for both speed and size.
     33             Unfortunately Valgrind does not support Zstd-compressed debug
     34             info yet: https://bugs.kde.org/show_bug.cgi?id=469782 -->
     35  <para>The debugging symbols from selected libraries are compressed with
     36  <application>Zlib</application> and preserved in separate files.  That
     37  debugging information is needed to run regression tests with <ulink
    3538  url='&blfs-book;/general/valgrind.html'>valgrind</ulink> or <ulink
    3639  url='&blfs-book;/general/gdb.html'>gdb</ulink> later, in BLFS.
     
    7881cd /usr/lib
    7982for LIB in $save_usrlib; do
    80     objcopy --only-keep-debug $LIB $LIB.dbg
     83    objcopy --only-keep-debug --compress-debug-sections=zlib $LIB $LIB.dbg
    8184    cp $LIB /tmp/$LIB
    8285    strip --strip-unneeded /tmp/$LIB
Note: See TracChangeset for help on using the changeset viewer.