diff options
author | Alex Gronenwoud <alex@linuxfromscratch.org> | 2003-09-02 22:03:51 +0000 |
---|---|---|
committer | Alex Gronenwoud <alex@linuxfromscratch.org> | 2003-09-02 22:03:51 +0000 |
commit | 148bb04f8022ae1ea657d36ef04ff062bd023206 (patch) | |
tree | 163a20e0d2845c8e3d95609cf02b4f7b05825c7b /chapter05/glibc-inst.xml | |
parent | 40add9445978e2619b7601d4536179b9ab2c065a (diff) |
Renaming /stage1 to /tools.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@2725 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter05/glibc-inst.xml')
-rw-r--r-- | chapter05/glibc-inst.xml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/chapter05/glibc-inst.xml b/chapter05/glibc-inst.xml index 6e57b51d5..7e433d3db 100644 --- a/chapter05/glibc-inst.xml +++ b/chapter05/glibc-inst.xml @@ -21,8 +21,8 @@ is putting the stability of your system at risk.</para> complain about the absence of <filename>/etc/ld.so.conf</filename>. Fix this annoying little error with:</para> -<para><screen><userinput>mkdir /stage1/etc -touch /stage1/etc/ld.so.conf</userinput></screen></para> +<para><screen><userinput>mkdir /tools/etc +touch /tools/etc/ld.so.conf</userinput></screen></para> <para>Also, Glibc has a subtle problem when compiled with GCC 3.3.1. Apply the following patch to fix this:</para> @@ -38,10 +38,10 @@ cd ../glibc-build</userinput></screen></para> <para>Next, prepare Glibc to be compiled:</para> -<para><screen><userinput>../glibc-&glibc-version;/configure --prefix=/stage1 \ +<para><screen><userinput>../glibc-&glibc-version;/configure --prefix=/tools \ --disable-profile --enable-add-ons \ - --with-headers=/stage1/include \ - --with-binutils=/stage1/bin \ + --with-headers=/tools/include \ + --with-binutils=/tools/bin \ --without-gd</userinput></screen></para> <para>The meaning of the new configure options:</para> @@ -54,8 +54,8 @@ plan to do profiling.</para></listitem> <listitem><para><userinput>--enable-add-ons</userinput>: This enables any add-ons that were installed with Glibc, in our case Linuxthreads.</para></listitem> -<listitem><para><userinput>--with-binutils=/stage1/bin</userinput> and -<userinput>--with-headers=/stage1/include</userinput>: Strictly speaking +<listitem><para><userinput>--with-binutils=/tools/bin</userinput> and +<userinput>--with-headers=/tools/include</userinput>: Strictly speaking these switches are not required. But they ensure nothing can go wrong with regard to what kernel headers and Binutils programs get used during the Glibc build.</para></listitem> |