glibc-exp.xml 2.5 KB

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