glibc-inst.xml 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <sect2>
  2. <title>Installation of Glibc</title>
  3. <para>Before starting to install glibc, you must cd into the
  4. glibc-&glibc-version; directory and unpack glibc-linuxthreads inside
  5. the glibc-&glibc-version; directory, not in /usr/src as you normally
  6. would do.</para>
  7. <para>This package is known to behave badly when you have changed its
  8. default optimization flags (including the -march and -mcpu options). Glibc
  9. is best left alone. Therefore, if you have defined any environment variables
  10. that override default optimizations, such as CFLAGS and CXXFLAGS, we
  11. recommend unsetting or modifying them when building binutils. You have
  12. been warned.</para>
  13. <para>Also, don't pass the --enable-kernel option to the configure
  14. script. It's known to cause segmentation faults when other packages like
  15. fileutils, make and tar are linked against it.</para>
  16. <para>Basically, compiling Glibc in any other way than the book suggests
  17. is putting your system at very high risk.</para>
  18. <para>Install Glibc by running the following commands:</para>
  19. <para><screen><userinput>mknod -m 0666 /dev/null c 1 3 &amp;&amp;
  20. touch /etc/ld.so.conf &amp;&amp;
  21. cp malloc/Makefile malloc/Makefile.backup &amp;&amp;
  22. sed 's%\$(PERL)%/usr/bin/perl%' \
  23. &nbsp;&nbsp;&nbsp;&nbsp;malloc/Makefile.backup &gt; malloc/Makefile &amp;&amp;
  24. cp login/Makefile login/Makefile.backup &amp;&amp;
  25. sed 's/root/0/' login/Makefile.backup &gt; login/Makefile &amp;&amp;
  26. mkdir ../glibc-build &amp;&amp;
  27. cd ../glibc-build &amp;&amp;
  28. ../glibc-&glibc-version;/configure --prefix=/usr \
  29. &nbsp;&nbsp;&nbsp;&nbsp;--enable-add-ons --libexecdir=/usr/bin &amp;&amp;
  30. echo "cross-compiling = no" &gt; configparms &amp;&amp;
  31. make &amp;&amp;
  32. make install &amp;&amp;
  33. make localedata/install-locales &amp;&amp;
  34. exec /bin/bash --login</userinput></screen></para>
  35. <para>An alternative to running <userinput>make
  36. localedata/install-locales</userinput> is to only install those locales
  37. which you need or want. This can be achieved using the localedef
  38. command. Information on this can be found in the INSTALL
  39. file in the glibc-&glibc-version; tree. One thing to note is that the
  40. <userinput>localedef</userinput> program assumes that the <filename
  41. class="directory">/usr/lib/locale</filename> directory exists, so you need
  42. to create it first.</para>
  43. <para>During the configure stage you will see the following warning:</para>
  44. <blockquote><screen>configure: warning:
  45. *** These auxiliary programs are missing or too old: msgfmt
  46. *** some features will be disabled.
  47. *** Check the INSTALL file for required versions.</screen></blockquote>
  48. <para>The missing msgfmt (from the gettext package which we will install
  49. later in this chapter) won't cause any problems. msgfmt is used to generate
  50. the binary translation files that are used to make your system talk in a
  51. different language. Because these translation files have already been
  52. generated for you, there is no need for msgfmt. You'd only need msgfmt if
  53. you change the translation source files (the <filename>*.po</filename>
  54. files in the <filename class="directory">po</filename> subdirectory) which\
  55. would require you to re-generate the binary files.</para>
  56. </sect2>