glibc-exp.xml 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <sect2>
  2. <title>Command explanations</title>
  3. <para><userinput>touch /etc/ld.so.conf:</userinput> One of the final steps
  4. of the Glibc installation is running ldconfig to update the dynamic loader
  5. cache. If this file doesn't exist, the installation will abort with an error
  6. that it can't read the file, so we simply create an empty file (the empty
  7. file will have Glibc default to using /lib and /usr/lib which is fine).</para>
  8. <para><userinput>sed 's%\$(PERL)%/usr/bin/perl%'
  9. malloc/Makefile.backup &gt; malloc/Makefile:</userinput> This sed command
  10. searches through <filename>malloc/Makefile.backup</filename> and
  11. converts all occurrences of <filename>$(PERL)</filename> to
  12. <filename>/usr/bin/perl</filename>. The output is then written to the
  13. original <filename>malloc/Makefile.in</filename> which is used during
  14. configuration. This is done because Glibc can't autodetect perl since
  15. it hasn't been installed yet.</para>
  16. <para><userinput>sed 's/root/0' login/Makefile.backup &gt;
  17. login/Makefile:</userinput> This sed command replaces all occurrences of
  18. <filename>root</filename> in <filename>login/Makefile.backup</filename>
  19. with 0. This is because we don't have glibc on the LFS system yet, so
  20. usernames can't be resolved to their user id's. Therefore, we replace
  21. the username root with user id 0.</para>
  22. <para><userinput>--enable-add-ons:</userinput> This enables the add-on that
  23. we install with Glibc: linuxthreads</para>
  24. <para><userinput>--libexecdir=/usr/bin:</userinput> This will cause the
  25. pt_chown program to be installed in the /usr/bin directory.</para>
  26. <para><userinput>echo "cross-compiling = no" &gt; configparms:</userinput>
  27. We do this because we are only building for our own system. Cross-compiling
  28. is used, for instance, to build a package for an Apple Power PC on an
  29. Intel system. The reason Glibc thinks we're cross-compiling is that it
  30. can't compile a test program to determine this, so it automatically defaults
  31. to a cross-compiler. Compiling the test program fails because Glibc hasn't
  32. been installed yet.</para>
  33. <para><userinput>exec /bin/bash:</userinput>This command will
  34. start a new bash shell which will replace the current shell. This is
  35. done to get rid of the "I have no name!" message in the command
  36. prompt, which was caused by bash's inability to resolve a userid to
  37. a username (which in turn was caused by the missing Glibc
  38. installation).</para>
  39. </sect2>