Changeset ae4d45a


Ignore:
Timestamp:
07/26/2010 06:45:20 PM (14 years ago)
Author:
Matthew Burgess <matthew@…>
Branches:
10.0, 10.0-rc1, 10.1, 10.1-rc1, 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, 6.7, 6.8, 7.0, 7.1, 7.2, 7.3, 7.4, 7.5, 7.5-systemd, 7.6, 7.6-systemd, 7.7, 7.7-systemd, 7.8, 7.8-systemd, 7.9, 7.9-systemd, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, 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:
d7bd6fdc
Parents:
67a8eae
Message:

Make GCC use the system-wide copy of Zlib rather than its bundled version. Fixes #2718.

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9344 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • chapter01/changelog.xml

    r67a8eae rae4d45a  
    4242      <itemizedlist>
    4343         <listitem>
     44           <para>[matthew] - Make GCC use the system-wide copy of Zlib rather
     45           than its bundled version. Fixes
     46           <ulink url="&lfs-ticket-root;2718">#2718</ulink>.</para>
     47         </listitem>
     48         <listitem>
    4449           <para>[matthew] - Upgrade to Psmisc-22.12.  Fixes
    4550           <ulink url="&lfs-ticket-root;2717">#2717</ulink>.</para>
  • chapter06/gcc.xml

    r67a8eae rae4d45a  
    7979    --enable-threads=posix --enable-__cxa_atexit \
    8080    --enable-clocale=gnu --enable-languages=c,c++ \
    81     --disable-multilib --disable-bootstrap</userinput></screen>
     81    --disable-multilib --disable-bootstrap --with-system-zlib</userinput></screen>
    8282
    8383    <para>Note that for other languages, there are some prerequisites that
    8484    are not available. See the BLFS Book for instructions on how to
    8585    build all the GCC supported languages.</para>
     86
     87    <variablelist>
     88      <title>The meaning of the new configure option:</title>
     89
     90      <varlistentry>
     91        <term><parameter>--with-system-zlib</parameter></term>
     92        <listitem>
     93          <para>This switch tells GCC to link to the system installed copy of
     94          the Zlib library, rather than its own internl copy.</para>
     95        </listitem>
     96      </varlistentry>
     97    </variablelist>
    8698
    8799    <para>Compile the package:</para>
Note: See TracChangeset for help on using the changeset viewer.