diff options
author | David Bryant <davidbryant@gvtc.com> | 2022-10-30 09:23:55 -0500 |
---|---|---|
committer | David Bryant <davidbryant@gvtc.com> | 2022-10-30 09:23:55 -0500 |
commit | f6820bb618ca967b074779498540bdc862de0c64 (patch) | |
tree | c81fde1c967abee77215b62645ac286c51ae4aad /chapter05/gcc-pass1.xml | |
parent | 019499e43bd48cb7f5a24d5dcba67fbb8b558984 (diff) |
Corrected spelling here and there. Regularized capitaization of package
names, corrected idiom / punctuation, and removed extraneous verbiage.
Diffstat (limited to 'chapter05/gcc-pass1.xml')
-rw-r--r-- | chapter05/gcc-pass1.xml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/chapter05/gcc-pass1.xml b/chapter05/gcc-pass1.xml index 2aace5d2b..89e163b6b 100644 --- a/chapter05/gcc-pass1.xml +++ b/chapter05/gcc-pass1.xml @@ -50,9 +50,9 @@ use them:</para> <note><para>There are frequent misunderstandings about this chapter. The - procedures are the same as every other chapter as explained earlier (<xref - linkend='buildinstr'/>). First extract the gcc tarball from the sources - directory and then change to the directory created. Only then should you + procedures are the same as every other chapter, as explained earlier (<xref + linkend='buildinstr'/>). First, extract the gcc-&gcc-version; tarball from the sources + directory, and then change to the directory created. Only then should you proceed with the instructions below.</para></note> <screen><userinput remap="pre">tar -xf ../mpfr-&mpfr-version;.tar.xz @@ -107,9 +107,9 @@ cd build</userinput></screen> <varlistentry> <term><parameter>--with-glibc-version=&glibc-version;</parameter></term> <listitem> - <para>This option specifies the version of glibc which will be + <para>This option specifies the version of Glibc which will be used on the target. It is not relevant to the libc of the host - distro because everything compiled by pass1 gcc will run in the + distro because everything compiled by pass1 GCC will run in the chroot environment, which is isolated from libc of the host distro.</para> </listitem> @@ -152,7 +152,7 @@ cd build</userinput></screen> <term><parameter>--disable-shared</parameter></term> <listitem> <para>This switch forces GCC to link its internal libraries - statically. We need this because the shared libraries require glibc, + statically. We need this because the shared libraries require Glibc, which is not yet installed on the target system.</para> </listitem> </varlistentry> @@ -204,7 +204,7 @@ cd build</userinput></screen> time of this build of GCC <filename>$LFS/usr/include/limits.h</filename> does not exist, so the internal header that has just been installed is a partial, self-contained file and does not include the extended features of - the system header. This is adequate for building glibc, but the full + the system header. This is adequate for building Glibc, but the full internal header will be needed later. Create a full version of the internal header using a command that is identical to what the GCC build system does in normal circumstances:</para> |