diff options
author | Jeremy Huntwork <jhuntwork@linuxfromscratch.org> | 2007-07-25 14:29:04 +0000 |
---|---|---|
committer | Jeremy Huntwork <jhuntwork@linuxfromscratch.org> | 2007-07-25 14:29:04 +0000 |
commit | f88b3c5ed9078d42b36b79251756980300378d49 (patch) | |
tree | 9d0a293b65eef26bc5b19ce94aac3dc7e73fc1a9 | |
parent | 71eb6ac1371dcb4084edeb120c2dd7e8bfa1f3fe (diff) |
Create the /tools/lib64 symlink after installing binutils.
git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/x86_64/BOOK@8248 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r-- | chapter01/changelog.xml | 8 | ||||
-rw-r--r-- | chapter04/creatingtoolsdir.xml | 6 | ||||
-rw-r--r-- | chapter05/binutils-pass1.xml | 4 | ||||
-rw-r--r-- | general.ent | 4 |
4 files changed, 14 insertions, 8 deletions
diff --git a/chapter01/changelog.xml b/chapter01/changelog.xml index bc013a1c9..bc519e0de 100644 --- a/chapter01/changelog.xml +++ b/chapter01/changelog.xml @@ -36,6 +36,14 @@ </listitem> --> + <listitem> + <para>2007-07-25</para> + <itemizedlist> + <listitem> + <para>[jhuntwork] - Create the /tools/lib64 symlink after installing binutils.</para> + </listitem> + </itemizedlist> + </listitem> <listitem> <para>2007-07-24</para> diff --git a/chapter04/creatingtoolsdir.xml b/chapter04/creatingtoolsdir.xml index 4cd33e73b..b1049a69f 100644 --- a/chapter04/creatingtoolsdir.xml +++ b/chapter04/creatingtoolsdir.xml @@ -45,10 +45,4 @@ (when we are still using some tools from the host) and in the next (when we are <quote>chrooted</quote> to the LFS partition).</para> - <para>Set up a lib dir and appropriate symlink for 64-bit usability.</para> - -<screen><userinput>mkdir -v /tools/lib -ln -sv lib /tools/lib64</userinput></screen> - - </sect1> diff --git a/chapter05/binutils-pass1.xml b/chapter05/binutils-pass1.xml index 4a4565e72..ddd35bcf2 100644 --- a/chapter05/binutils-pass1.xml +++ b/chapter05/binutils-pass1.xml @@ -116,6 +116,10 @@ cd ../binutils-build</userinput></screen> make -C ld LIB_PATH=/tools/lib cp -v ld/ld-new /tools/bin</userinput></screen> + <para>Finally, create a symlink to ensure the sanity of our toolchain:</para> + +<screen><userinput>ln -sv lib /tools/lib64</userinput></screen> + <variablelist> <title>The meaning of the make parameters:</title> diff --git a/general.ent b/general.ent index 2f078267b..9d2cd03ff 100644 --- a/general.ent +++ b/general.ent @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="ISO-8859-1"?> -<!ENTITY version "SVN-x86_64-20070724"> -<!ENTITY releasedate "July 24, 2007"> +<!ENTITY version "SVN-x86_64-20070725"> +<!ENTITY releasedate "July 25, 2007"> <!ENTITY milestone "6.3"> <!ENTITY generic-version "development"> <!-- Use "development", "testing", or "x.y[-pre{x}]" --> |