Changeset c49647b1


Ignore:
Timestamp:
10/13/2008 01:32:41 PM (16 years ago)
Author:
Randy McMurchy <randy@…>
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.4, 6.5, 6.6, 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:
d75c123
Parents:
ef31c67
Message:

Modified the Chapter 5 instructions so that instead of building the GMP and MPFR packages separately for GCC Pass2, they are built by GCC internally

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

Files:
5 edited

Legend:

Unmodified
Added
Removed
  • appendices/dependencies.xml

    ref31c67 rc49647b1  
    487487        <seglistitem>
    488488         <seg>Bash, Binutils, Coreutils, Diffutils, Findutils, Gawk, GCC,
    489          Gettext, Glibc, GMP (Chapter 5-Pass 2 and Chapter 6), Grep,
    490          M4 (Chapter 5-Pass 1), Make, MPFR (Chapter 5-Pass 2 and Chapter 6),
    491          Patch, Perl, Sed, Tar, and Texinfo</seg>
     489         Gettext, Glibc, GMP (Chapter 6), Grep, M4 (Chapter 5), Make,
     490         MPFR (Chapter 6), Patch, Perl, Sed, Tar, and Texinfo</seg>
    492491        </seglistitem>
    493492      </segmentedlist>
  • chapter01/changelog.xml

    ref31c67 rc49647b1  
    4242      <itemizedlist>
    4343        <listitem>
     44          <para>[randy] - Modified the Chapter 5 instructions so that instead
     45          of building the GMP and MPFR packages separately for GCC Pass2, they
     46          are built by GCC internally.</para>
     47        </listitem>
     48        <listitem>
    4449          <para>[randy] - Added a configure option to the Chapter 6 Gettext
    4550          instructions so that the documentation is installed in a versioned
  • chapter05/chapter05.xml

    ref31c67 rc49647b1  
    2323  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="expect.xml"/>
    2424  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="dejagnu.xml"/>
    25   <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="gmp.xml"/>
    26   <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="mpfr.xml"/>
     25  <!-- <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="gmp.xml"/>
     26  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="mpfr.xml"/> -->
    2727  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="gcc-pass2.xml"/>
    2828  <xi:include xmlns:xi="http://www.w3.org/2003/XInclude" href="binutils-pass2.xml"/>
  • chapter05/gcc-pass1.xml

    ref31c67 rc49647b1  
    9393        <term><parameter>--disable-shared</parameter></term>
    9494        <listitem>
    95           <para>This switch forces gcc to link its internal libraries
     95          <para>This switch forces GCC to link its internal libraries
    9696          statically. We do this to avoid possible issues with the host
    9797          system.</para>
  • chapter05/gcc-pass2.xml

    ref31c67 rc49647b1  
    125125    </para>
    126126
     127    <para>As in the first build of GCC it requires the GMP and MPFR packages.
     128    Unpack the tarballs and move them into the required directory names:</para>
     129
     130<screen><userinput remap="pre">tar -jxf ../mpfr-&mpfr-version;.tar.bz2
     131mv mpfr-&mpfr-version; mpfr
     132tar -jxf ../gmp-&gmp-version;.tar.bz2
     133mv gmp-&gmp-version; gmp</userinput></screen>
     134
    127135    <para>Create a separate build directory again:</para>
    128136
Note: See TracChangeset for help on using the changeset viewer.