source: chapter04/creatingtoolsdir.xml@ 3e46693

6.0
Last change on this file since 3e46693 was 78349b7, checked in by Gerard Beekmans <gerard@…>, 20 years ago

Completed global edits for upcoming 6.0 release

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/testing/BOOK@3998 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 2.0 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
3 <!ENTITY % general-entities SYSTEM "../general.ent">
4 %general-entities;
5]>
6<sect1 id="ch-tools-creatingtoolsdir">
7<title>Creating the $LFS/tools Directory</title>
8<?dbhtml filename="creatingtoolsdir.html"?>
9
10<para>All programs compiled in <xref
11linkend="chapter-temporary-tools"/> will be installed under <filename
12class="directory">$LFS/tools</filename> to keep them separate from the
13programs compiled in <xref linkend="chapter-building-system"/>. The
14programs compiled here are temporary tools and will not be a part of
15the final LFS system. By keeping these programs in a separate
16directory, they can easily be discarded later after their use. This
17also prevents these programs from ending up in the host production
18directories (easy to do by accident in <xref
19linkend="chapter-temporary-tools"/>), which could be a very bad
20thing.</para>
21
22<para>Create the required directory by running the following as
23<emphasis>root</emphasis>:</para>
24
25<screen><userinput>mkdir $LFS/tools</userinput></screen>
26
27<para>The next step is to create a <filename>/tools</filename> symlink
28on the host system. This will point to the newly-created directory on
29the LFS partition. Run this command as <emphasis>root</emphasis> as
30well:</para>
31
32<screen><userinput>ln -s $LFS/tools /</userinput></screen>
33
34<note><para>The above command is correct. The <command>ln</command>
35command has a few syntactic variations, so be sure to check the info
36and man pages before reporting what you may think is an
37error.</para></note>
38
39<para>The created symlink enables the toolchain to be compiled so that
40it always refers to <filename class="directory">/tools</filename>,
41meaning that the compiler, assembler, and linker will work both in
42this chapter (when we are still using some tools from the host) and in
43the next (when we are <quote>chrooted</quote> to the LFS
44partition).</para>
45
46</sect1>
47
Note: See TracBrowser for help on using the repository browser.