adjustingtoolchain.xml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <sect1 id="ch06-adjustingtoolchain">
  2. <title>Re-adjusting the toolchain</title>
  3. <?dbhtml filename="adjustingtoolchain.html" dir="chapter06"?>
  4. <para>Now that the new C libraries have been installed, it's time to re-adjust
  5. our toolchain. We'll adjust it so that it will link any newly compiled program
  6. against the new C libraries. Basically, this is the reverse of what we did
  7. in the "Locking in" stage in the beginning of the previous chapter.</para>
  8. <para>The first thing to do is to adjust the linker scripts. For this we
  9. retained the source and build directories from the second pass over Binutils.
  10. Install the adjusted linker scripts by running the following from within the
  11. <filename class="directory">binutils-build</filename> directory:</para>
  12. <para><screen><userinput>make -C ld install-data-local</userinput></screen></para>
  13. <para>The linker scripts now contain
  14. no mention of <filename class="directory">/tools/lib</filename> anymore.
  15. From now on every compiled program will link <emphasis>only</emphasis>
  16. against the libraries in <filename>/usr/lib</filename> and
  17. <filename>/lib</filename>.</para>
  18. <para>You can now remove the Binutils source and build directories.</para>
  19. <para>The next thing to do is to amend our GCC specs file so that it points
  20. to the new dynamic linker. Just like earlier on, we use a sed to accomplish
  21. this:</para>
  22. <para><screen><userinput>SPECFILE=/tools/lib/gcc-lib/*/*/specs
  23. sed -e 's@/tools/lib/ld.so.1@/lib/ld.so.1@g' \
  24. &nbsp;&nbsp;&nbsp;&nbsp;-e 's@/tools/lib/ld-linux.so.2@/lib/ld-linux.so.2@g' \
  25. &nbsp;&nbsp;&nbsp;&nbsp;$SPECFILE > newspecfile
  26. mv newspecfile $SPECFILE
  27. unset SPECFILE</userinput></screen></para>
  28. <para>Again, cutting and pasting the above is recommended. And just like
  29. before, it is a good idea to check the linker scripts and the specs file to
  30. ensure the intended changes were actually made.</para>
  31. <para>Note that the linker scripts will still contain a reference to
  32. <filename class="directory">/tools/i686-pc-linux-gnu/lib</filename>. This
  33. is unavoidable, but luckily does not present a problem. There are no
  34. libraries in that location as all the temporary tools libraries are
  35. located in <filename class="directory">/tools/lib</filename>.</para>
  36. </sect1>