source: chapter05/adjusting.xml@ b8dd57d6

Last change on this file since b8dd57d6 was da2f9fe, checked in by Jeremy Huntwork <jhuntwork@…>, 17 years ago
  • Upgraded to HJL Binutils-2.17.50.0.18
  • Initial update of commands to work with both x86 and x86_64

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

  • Property mode set to 100644
File size: 6.2 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../general.ent">
5 %general-entities;
6]>
7
8<sect1 id="ch-tools-adjusting">
9 <?dbhtml filename="adjusting.html"?>
10
11 <title>Adjusting the Toolchain</title>
12
13 <para>Now that the temporary C libraries have been installed, all
14 tools compiled in the rest of this chapter should be linked against
15 these libraries. In order to accomplish this, the linker and the
16 compiler's specs file need to be adjusted.</para>
17
18 <para>The linker, adjusted at the end of the first pass of Binutils, needs
19 to be renamed so that it can be properly found and used. First, backup the
20 original linker, then replace it with the adjusted linker. We'll also
21 create a link to its counterpart in <filename class="directory">
22 /tools/$(gcc -dumpmachine)/bin</filename>:</para>
23
24<screen><userinput>mv -v /tools/bin/{ld,ld-old}
25mv -v /tools/$(gcc -dumpmachine)/bin/{ld,ld-old}
26mv -v /tools/bin/{ld-new,ld}
27ln -sv /tools/bin/ld /tools/$(gcc -dumpmachine)/bin/ld</userinput></screen>
28
29 <para>From this point onwards, everything will link only against the
30 libraries in <filename class="directory">/tools/lib</filename>.</para>
31
32 <para>The next task is to point GCC to the new dynamic linker. This is done by
33 dumping GCC's <quote>specs</quote> file to a location where GCC will look for it
34 by default. A simple <command>sed</command> substitution then alters the
35 dynamic linker that GCC will use.</para>
36
37 <para>For the sake of accuracy, it is recommended to use a copy-and-paste
38 method when issuing the following command. Be sure to visually inspect the
39 specs file and verify that all occurrences of <quote>/lib/ld-linux.so.2</quote>
40 have been replaced with <quote>/tools/lib/ld-linux.so.2</quote>:</para>
41
42 <important>
43 <para>If working on a platform where the name of the dynamic linker is
44 something other than <filename class="libraryfile">ld-linux.so.2</filename>,
45 replace <quote>ld-linux.so.2</quote> with the name of the platform's
46 dynamic linker in the following commands. Refer to <xref
47 linkend="ch-tools-toolchaintechnotes" role=","/> if necessary. Additionally,
48 note that on 64-bit machines the linker may actually be expected in the
49 <filename class="directory">/lib64</filename> directory.</para>
50 </important>
51
52<!-- Ampersands are needed to allow copy and paste -->
53<screen><userinput>gcc -dumpspecs | sed 's@/lib\(64\)\?/ld@/tools&amp;@g' \
54 &gt; `dirname $(gcc -print-libgcc-file-name)`/specs</userinput></screen>
55
56 <para>During the build process, GCC runs a script
57 (<command>fixincludes</command>) that scans the system for header files
58 that may need to be fixed (they might contain syntax errors, for example),
59 and installs the fixed versions in a private include directory. There is a
60 possibility that, as a result of this process, some header files from the
61 host system have found their way into GCC's private include directory. As
62 the rest of this chapter only requires the headers from GCC and Glibc,
63 which have both been installed at this point, any <quote>fixed</quote>
64 headers can safely be removed. This helps to avoid any host headers
65 polluting the build environment. Run the following commands to remove the
66 header files in GCC's private include directory (you may find it easier to
67 copy and paste these commands, rather than typing them by hand, due to
68 their length):</para>
69
70<!-- && used to ease copy and pasting -->
71<screen><userinput>GCC_INCLUDEDIR=`dirname $(gcc -print-libgcc-file-name)`/include &amp;&amp;
72find ${GCC_INCLUDEDIR}/* -maxdepth 0 -xtype d -exec rm -rvf '{}' \; &amp;&amp;
73rm -vf `grep -l "DO NOT EDIT THIS FILE" ${GCC_INCLUDEDIR}/*` &amp;&amp;
74unset GCC_INCLUDEDIR</userinput></screen>
75
76 <caution>
77 <para>At this point, it is imperative to stop and ensure that the basic
78 functions (compiling and linking) of the new toolchain are working as
79 expected. To perform a sanity check, run the following commands:</para>
80
81<screen><userinput>echo 'main(){}' &gt; dummy.c
82cc dummy.c
83readelf -l a.out | grep ': /tools'</userinput></screen>
84
85 <para>If everything is working correctly, there should be no errors,
86 and the output of the last command will be of the form:</para>
87
88<screen><computeroutput>[Requesting program interpreter:
89 /tools/lib/ld-linux.so.2]</computeroutput></screen>
90
91 <para>Note that <filename class="directory">/tools/lib</filename>, or
92 <filename class="directory">/tools/lib64</filename> for 64-bit machines
93 appears as the prefix of the dynamic linker.</para>
94
95 <para>If the output is not shown as above or there was no output at all,
96 then something is wrong. Investigate and retrace the steps to find out
97 where the problem is and correct it. This issue must be resolved before
98 continuing on. First, perform the sanity check again, using
99 <command>gcc</command> instead of <command>cc</command>. If this works,
100 then the <filename class="symlink">/tools/bin/cc</filename> symlink is
101 missing. Revisit <xref linkend="ch-tools-gcc-pass1" role=","/> and install
102 the symlink. Next, ensure that the <envar>PATH</envar> is correct. This
103 can be checked by running <command>echo $PATH</command> and verifying that
104 <filename class="directory">/tools/bin</filename> is at the head of the
105 list. If the <envar>PATH</envar> is wrong it could mean that you are not
106 logged in as user <systemitem class="username">lfs</systemitem> or that
107 something went wrong back in <xref linkend="ch-tools-settingenviron"
108 role="."/> Another option is that something may have gone wrong with the
109 specs file amendment above. In this case, redo the specs file amendment,
110 being careful to copy-and-paste the commands.</para>
111
112 <para>Once all is well, clean up the test files:</para>
113
114<screen><userinput>rm -v dummy.c a.out</userinput></screen>
115
116 </caution>
117
118 <note><para>Building TCL in the next section will serve as an additional check that
119 the toolchain has been built properly. If TCL fails to build, it is an
120 indication that something has gone wrong with the Binutils, GCC, or Glibc
121 installation, but not with TCL itself.</para></note>
122
123</sect1>
Note: See TracBrowser for help on using the repository browser.