glibc-exp.xml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <sect2>
  2. <title>Command explanations</title>
  3. <para><userinput>patch -Np1 -i ../glibc-&glibc-version;.patch:</userinput>
  4. This patch converts all occurances of <filename>$(PERL)</filename> to
  5. <filename>/usr/bin/perl</filename> in the
  6. <filename>malloc/Makefile</filename> file. This is done because Glibc can't
  7. autodetect the location of perl because perl has yet to be installed. The
  8. patch also replaces all occurances of <emphasis>root</emphasis> with
  9. <emphasis>0</emphasis> in the <filename>login/Makefile</filename> file.
  10. This is done because Glibc itself isn't installed yet and therefore
  11. username to userid resolving isn't working yet, so a <userinput>chown root
  12. file</userinput> will fail, however it'll work fine if you use straight
  13. IDs.</para>
  14. <para><userinput>touch /etc/ld.so.conf:</userinput> One of the final steps
  15. of the Glibc installation is running ldconfig to update the dynamic loader
  16. cache. If this file doesn't exist, the installation will abort with an error
  17. that it can't read the file, so we simply create an empty file (the empty
  18. file will have Glibc default to using /lib and /usr/lib which is fine).</para>
  19. <para><userinput>--enable-add-ons:</userinput> This enables the add-on that
  20. we install with Glibc: linuxthreads</para>
  21. <para><userinput>--libexecdir=/usr/bin:</userinput> This will cause the
  22. pt_chown program to be installed in the /usr/bin directory.</para>
  23. <para><userinput>echo "cross-compiling = no" &gt; configparms:</userinput>
  24. We do this because we are only building for our own system. Cross-compiling
  25. is used, for instance, to build a package for an Apple Power PC on an
  26. Intel system. The reason Glibc thinks we're cross-compiling is that it
  27. can't compile a test program to determine this, so it automatically defaults
  28. to a cross-compiler. Compiling the test program fails because Glibc hasn't
  29. been installed yet.</para>
  30. <para><userinput>exec /bin/bash:</userinput>This command will
  31. start a new bash shell which will replace the current shell. This is
  32. done to get rid of the "I have no name!" message in the command
  33. prompt, which was caused by bash's inability to resolve a user ID to
  34. a user name (which in turn was caused by the absence of Glibc).</para>
  35. </sect2>