diff options
author | Greg Schafer <greg@linuxfromscratch.org> | 2003-09-21 03:05:40 +0000 |
---|---|---|
committer | Greg Schafer <greg@linuxfromscratch.org> | 2003-09-21 03:05:40 +0000 |
commit | 76d113f6f28b54f0b2b96104b2dcec94eeb1bcac (patch) | |
tree | da298b59b0986b7291ca3c582a858ea1af639fc6 /chapter05 | |
parent | dc19fb6e8ee98149ca0e9971bbf62f8fb418197e (diff) |
Toolchain related textual adjustments.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2854 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter05')
-rw-r--r-- | chapter05/gcc-pass2-inst.xml | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/chapter05/gcc-pass2-inst.xml b/chapter05/gcc-pass2-inst.xml index 81a1b2dbf..b57ae3324 100644 --- a/chapter05/gcc-pass2-inst.xml +++ b/chapter05/gcc-pass2-inst.xml @@ -35,11 +35,15 @@ fixed headers from the host system, which would most likely not match the Glibc version actually used for the LFS system.</para> <para>The last patch changes GCC's default location of the dynamic linker -(typically ld-linux.so.2). It also removes <filename class="directory">/usr/include -</filename> from GCC's include search path. Patching now rather than adjusting -the specs file after installation ensures that our new dynamic linker gets used -during the actual build of GCC. That is, all the final (and temporary) binaries -created during the build will link against the new Glibc.</para> +(typically <filename>ld-linux.so.2</filename>). It also removes +<filename class="directory">/usr/include</filename> from GCC's include search +path. Patching now rather than adjusting the specs file after installation +ensures that our new dynamic linker gets used during the actual build of GCC. +That is, all the final (and temporary) binaries created during the build will +link against the new Glibc.</para> + +<important><para>These patches are <emphasis>critical</emphasis> in ensuring a +successful overall build. Do not forget to apply them.</para></important> <para>Create a separate build directory again:</para> |