source: chapter08/adjusting.xml@ 47c9152

11.0 11.0-rc1 11.0-rc2 11.0-rc3 11.1 11.1-rc1 11.2 11.2-rc1 11.3 11.3-rc1 12.0 12.0-rc1 12.1 12.1-rc1 arm bdubbs/gcc13 ml-11.0 multilib renodr/libudev-from-systemd s6-init trunk xry111/arm64 xry111/arm64-12.0 xry111/clfs-ng xry111/lfs-next xry111/loongarch xry111/loongarch-12.0 xry111/loongarch-12.1 xry111/mips64el xry111/pip3 xry111/rust-wip-20221008 xry111/update-glibc
Last change on this file since 47c9152 was d7a9421, checked in by Douglas R. Reno <renodr@…>, 3 years ago

Merge Xi's changes into trunk
Update to meson-0.58.0
Update to systemd-248
Update to gcc-11.1.0
Update to linux-5.12.1
Update to iproute2-5.12.0
Update to Python-3.9.5
Make /bin, /sbin, and /lib symlinks to their counterparts in /usr.
Thanks again for a significant portion of this work goes to Xi, I only
really merged it and made a couple of modifications for my updates. To
LFS 11.x we go!

  • Property mode set to 100644
File size: 5.4 KB
RevLine 
[673b0d8]1<?xml version="1.0" encoding="ISO-8859-1"?>
[b06ca36]2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
[673b0d8]4 <!ENTITY % general-entities SYSTEM "../general.ent">
5 %general-entities;
6]>
[3f3931b0]7
[d38ac3a]8<sect1 id="ch-system-adjusting">
9 <?dbhtml filename="adjusting.html"?>
[3f3931b0]10
[d38ac3a]11 <title>Adjusting the Toolchain</title>
[3f3931b0]12
13 <para>Now that the final C libraries have been installed, it is time to adjust
[d38ac3a]14 the toolchain so that it will link any
15 newly compiled program against these new libraries.</para>
[3f3931b0]16
17 <para>First, backup the <filename class="directory">/tools</filename> linker,
18 and replace it with the adjusted linker we made in chapter 5. We'll also create
[8035f937]19 a link to its counterpart in
20 <filename class="directory">/tools/$(uname -m)-pc-linux-gnu/bin</filename>:</para>
[2914987b]21
[1ba726f]22<screen><userinput>mv -v /tools/bin/{ld,ld-old}
[8035f937]23mv -v /tools/$(uname -m)-pc-linux-gnu/bin/{ld,ld-old}
[1ba726f]24mv -v /tools/bin/{ld-new,ld}
[8035f937]25ln -sv /tools/bin/ld /tools/$(uname -m)-pc-linux-gnu/bin/ld</userinput></screen>
[2914987b]26
[afc6823]27 <para>the next command amends the GCC specs file to achieve three goals:
28 first point GCC to the new dynamic linker. Simply deleting all instances of
29 <quote>/tools</quote> should leave us with the correct path to the dynamic
30 linker. Second, let GCC know where to find the Glibc start files. Third,
31 add the /usr/include directory at the end of the default search path, so
32 that header files added in chapter 6 are found.
[4e82d47]33 A <command>sed</command> command accomplishes this:</para>
[54592a1]34
[6458e31]35<screen><userinput>gcc -dumpspecs | sed -e 's@/tools@@g' \
[e9a652b]36 -e '/\*startfile_prefix_spec:/{n;s@.*@/usr/lib/ @}' \
[afc6823]37 -e '/\*cpp:/{n;s@$@ -idirafter /usr/include@}' &gt; \
[3f3931b0]38 `dirname $(gcc --print-libgcc-file-name)`/specs</userinput></screen>
39
40 <para>It is a good idea to visually inspect the specs file to verify the
41 intended change was actually made.</para>
42
[09f1daf]43 <para>It is imperative at this point to ensure that the basic
44 functions (compiling and linking) of the adjusted toolchain are working
45 as expected. To do this, perform the following sanity checks:</para>
[673b0d8]46
[3d56263]47<screen os="a"><userinput>echo 'int main(){}' &gt; dummy.c
[e9a652b]48cc dummy.c -v -Wl,--verbose &amp;&gt; dummy.log
[673b0d8]49readelf -l a.out | grep ': /lib'</userinput></screen>
50
[75128f91]51 <para os="b">There should be no errors,
[09f1daf]52 and the output of the last command will be (allowing for
[6a156bab]53 platform-specific differences in the dynamic linker name):</para>
[673b0d8]54
[98e7ac4]55<screen os="c"><computeroutput>[Requesting program interpreter: /lib64/ld-linux-x86-64.so.2]</computeroutput></screen>
[673b0d8]56
[2a975935]57 <para>Note that on 64-bit systems <filename class="directory">/lib</filename> is
58 the location of our dynamic linker, but is accessed via a symbolic link
59 in /lib64.</para>
[673b0d8]60
[98e7ac4]61 <note><para>On 32-bit systems the interpreter should be
62 /lib/ld-linux.so.2.</para></note>
[d730742]63
[edbeeb5]64 <para os="d">Now make sure that we're setup to use the correct start files:</para>
[2914987b]65
[570f6bb]66<screen os="e"><userinput>grep -o '/usr/lib.*/crt[1in].*succeeded' dummy.log</userinput></screen>
[2914987b]67
[75128f91]68 <para os="f">The output of the last command should be:</para>
[2914987b]69
[98e7ac4]70<screen><computeroutput>/usr/lib/../lib/crt1.o succeeded
71/usr/lib/../lib/crti.o succeeded
72/usr/lib/../lib/crtn.o succeeded</computeroutput></screen>
[d730742]73
[e9a652b]74 <para os="g">Verify that the compiler is searching for the correct header
75 files:</para>
[2914987b]76
[afc6823]77<screen><userinput>grep -B4 '^ /usr/include' dummy.log</userinput></screen>
[2914987b]78
[75128f91]79 <para os="h">This command should return the following output:</para>
[e9a652b]80
81<screen><computeroutput>#include &lt;...&gt; search starts here:
[afc6823]82 /tools/lib/gcc/x86_64-pc-linux-gnu/&gcc-version;/include
83 /tools/include
84 /tools/lib/gcc/x86_64-pc-linux-gnu/&gcc-version;/include-fixed
[e9a652b]85 /usr/include</computeroutput></screen>
86
[afc6823]87 <note><para>On a 32 bit system, x86_64 is replaced with i686.</para></note>
88
[e9a652b]89 <para os="i">Next, verify that the new linker is being used with the correct search paths:</para>
90
[006ed03]91<screen os="j"><userinput>grep 'SEARCH.*/usr/lib' dummy.log |sed 's|; |\n|g'</userinput></screen>
[e9a652b]92
[6a0d235]93 <para os="k">References to paths that have components with '-linux-gnu' should
94 be ignored, but otherwise the output of the last command should be:</para>
[09f1daf]95
[a1b60e2]96<screen><computeroutput>SEARCH_DIR("/usr/lib")
[98e7ac4]97SEARCH_DIR("/lib")</computeroutput></screen>
[09f1daf]98
[e9a652b]99 <para os="l">Next make sure that we're using the correct libc:</para>
[09f1daf]100
[6e88633]101<screen os="m"><userinput>grep "/lib.*/libc.so.6 " dummy.log</userinput></screen>
[09f1daf]102
[98e7ac4]103 <para os="n">The output of the last command should be:</para>
[2914987b]104
[d7a9421]105<screen os="o"><computeroutput>attempt to open /usr/lib/libc.so.6 succeeded</computeroutput></screen>
[2914987b]106
[6a156bab]107 <para os="p">Make sure GCC is using the correct dynamic linker:</para>
[2914987b]108
[006ed03]109<screen os="q"><userinput>grep found dummy.log</userinput></screen>
[2914987b]110
[98e7ac4]111 <para os="r">The output of the last command should be (allowing for
112 platform-specific differences in dynamic linker name):</para>
[2914987b]113
[d7a9421]114<screen os="s"><computeroutput>found ld-linux-x86-64.so.2 at /usr/lib/ld-linux-x86-64.so.2</computeroutput></screen>
[2914987b]115
[e9a652b]116 <para os="t">If the output does not appear as shown above or is not received
[09f1daf]117 at all, then something is seriously wrong. Investigate and retrace the
[6a156bab]118 steps to find out where the problem is and correct it. <!--The most likely
119 reason is that something went wrong with the specs file adjustment.--> Any
[0d84af1]120 issues will need to be resolved before continuing with the process.</para>
[673b0d8]121
[e9a652b]122 <para os="u">Once everything is working correctly, clean up the test files:</para>
[81fd230]123
[006ed03]124<screen os="v"><userinput>rm -v dummy.c a.out dummy.log</userinput></screen>
[673b0d8]125
126</sect1>
Note: See TracBrowser for help on using the repository browser.