From 0d84af1cbb0dc825db3e965d5126e5b08f878067 Mon Sep 17 00:00:00 2001 From: Bruce Dubbs Date: Thu, 28 Dec 2017 03:52:38 +0000 Subject: Typos and wording changes git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@11343 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689 --- chapter05/gcc-pass1.xml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) (limited to 'chapter05/gcc-pass1.xml') diff --git a/chapter05/gcc-pass1.xml b/chapter05/gcc-pass1.xml index aa3632481..e4c888294 100644 --- a/chapter05/gcc-pass1.xml +++ b/chapter05/gcc-pass1.xml @@ -84,7 +84,7 @@ done In case the above seems hard to follow, let's break it down a bit. First we copy the files gcc/config/linux.h, gcc/config/i386/linux.h, and - gcc/config/i368/linux64.h. to a file of + gcc/config/i368/linux64.h to a file of the same name but with an added suffix of .orig. Then the first sed expression prepends /tools to every instance of /lib/ld, /lib64/ld or @@ -185,12 +185,14 @@ cd build --with-native-system-header-dir=/tools/include - By default GCC searches /usr/include for system - headers. In conjunction with the sysroot switch, this would translate normally - to $LFS/usr/include. However the headers that will be installed - in the next two sections will go to $LFS/tools/include. This - switch ensures that gcc will find them correctly. In the second pass of GCC, this - same switch will ensure that no headers from the host system are found. + By default GCC searches /usr/include for + system headers. In conjunction with the sysroot switch, this would + normally translate to $LFS/usr/include. However + the headers that will be installed in the next two sections will go + to $LFS/tools/include. This switch ensures that + gcc will find them correctly. In the second pass of GCC, this same + switch will ensure that no headers from the host system are + found. -- cgit v1.2.3-54-g00ecf