diff options
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> |