diff options
author | Randy McMurchy <randy@linuxfromscratch.org> | 2008-10-13 13:32:41 +0000 |
---|---|---|
committer | Randy McMurchy <randy@linuxfromscratch.org> | 2008-10-13 13:32:41 +0000 |
commit | c49647b10ac25ec57bb0f956f92cf3f36995aa47 (patch) | |
tree | 731778127ad7db646e7a8fdcea98b7576a8e3d0d /chapter05/gcc-pass2.xml | |
parent | ef31c67389f768ca9a632fa0017ccc741a9da72e (diff) |
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
Diffstat (limited to 'chapter05/gcc-pass2.xml')
-rw-r--r-- | chapter05/gcc-pass2.xml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/chapter05/gcc-pass2.xml b/chapter05/gcc-pass2.xml index 2dccf00f6..0bbab725b 100644 --- a/chapter05/gcc-pass2.xml +++ b/chapter05/gcc-pass2.xml @@ -124,6 +124,14 @@ done</userinput></screen> changes to the original files in case the command is inadvertently run twice. </para> + <para>As in the first build of GCC it requires the GMP and MPFR packages. + Unpack the tarballs and move them into the required directory names:</para> + +<screen><userinput remap="pre">tar -jxf ../mpfr-&mpfr-version;.tar.bz2 +mv mpfr-&mpfr-version; mpfr +tar -jxf ../gmp-&gmp-version;.tar.bz2 +mv gmp-&gmp-version; gmp</userinput></screen> + <para>Create a separate build directory again:</para> <screen><userinput remap="pre">mkdir -v ../gcc-build |