glibc.xml 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
  3. "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
  4. <!ENTITY % general-entities SYSTEM "../general.ent">
  5. %general-entities;
  6. ]>
  7. <sect1 id="ch-tools-glibc" role="wrap">
  8. <?dbhtml filename="glibc.html"?>
  9. <sect1info condition="script">
  10. <productname>glibc</productname>
  11. <productnumber>&glibc-version;</productnumber>
  12. <address>&glibc-url;</address>
  13. </sect1info>
  14. <title>Glibc-&glibc-version;</title>
  15. <indexterm zone="ch-tools-glibc">
  16. <primary sortas="a-Glibc">Glibc</primary>
  17. <secondary>tools</secondary>
  18. </indexterm>
  19. <sect2 role="package">
  20. <title/>
  21. <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  22. href="../chapter08/glibc.xml"
  23. xpointer="xpointer(/sect1/sect2[1]/para[1])"/>
  24. <segmentedlist>
  25. <segtitle>&buildtime;</segtitle>
  26. <segtitle>&diskspace;</segtitle>
  27. <seglistitem>
  28. <seg>&glibc-tmp-sbu;</seg>
  29. <seg>&glibc-tmp-du;</seg>
  30. </seglistitem>
  31. </segmentedlist>
  32. </sect2>
  33. <sect2 role="installation">
  34. <title>Installation of Glibc</title>
  35. <para arch="default">First, create a symbolic link for LSB compliance. Additionally,
  36. for x86_64, create a compatibility symbolic link required for proper
  37. operation of the dynamic library loader:</para>
  38. <screen arch="default"><userinput remap="pre">case $(uname -m) in
  39. i?86) ln -sfv ld-linux.so.2 $LFS/lib/ld-lsb.so.3
  40. ;;
  41. x86_64) ln -sfv ../lib/ld-linux-x86-64.so.2 $LFS/lib64
  42. ln -sfv ../lib/ld-linux-x86-64.so.2 $LFS/lib64/ld-lsb-x86-64.so.3
  43. ;;
  44. esac</userinput></screen>
  45. <para arch="ml_32,ml_x32,ml_all">First, create symbolic links for LSB compliance
  46. and compatibility symbolic links required for proper
  47. operation of the dynamic library loader:</para>
  48. <!-- no ld-linux.so.2 here as multilib is based on x86_64, not on i686 -->
  49. <screen arch="ml_32,ml_x32,ml_all"><userinput remap="pre">ln -sfv ../lib/ld-linux-x86-64.so.2 $LFS/lib64
  50. ln -sfv ../lib/ld-linux-x86-64.so.2 $LFS/lib64/ld-lsb-x86-64.so.3</userinput></screen>
  51. <para>Some of the Glibc programs use the non-FHS compliant
  52. <filename class="directory">/var/db</filename> directory to store their
  53. runtime data. Apply the following patch to make such programs store their
  54. runtime data in the FHS-compliant locations:</para>
  55. <screen><userinput remap="pre">patch -Np1 -i ../glibc-&glibc-version;-fhs-1.patch</userinput></screen>
  56. <para>The Glibc documentation recommends building Glibc
  57. in a dedicated build directory:</para>
  58. <screen><userinput remap="pre">mkdir -v build
  59. cd build</userinput></screen>
  60. <para>Next, prepare Glibc for compilation:</para>
  61. <screen arch="default"><userinput remap="configure">../configure \
  62. --prefix=/usr \
  63. --host=$LFS_TGT \
  64. --build=$(../scripts/config.guess) \
  65. --enable-kernel=&min-kernel; \
  66. --with-headers=$LFS/usr/include \
  67. libc_cv_slibdir=/lib</userinput></screen>
  68. <screen arch="ml_32,ml_x32,ml_all"><userinput remap="configure">../configure \
  69. --prefix=/usr \
  70. --host=$LFS_TGT \
  71. --build=$(../scripts/config.guess) \
  72. --enable-kernel=&min-kernel; \
  73. --with-headers=$LFS/usr/include \
  74. --enable-multi-arch \
  75. --libdir=/usr/lib \
  76. --libexecdir=/usr/lib \
  77. libc_cv_slibdir=/lib</userinput></screen>
  78. <!--
  79. libc_cv_forced_unwind=yes \
  80. libc_cv_c_cleanup=yes</userinput></screen> -->
  81. <variablelist>
  82. <title>The meaning of the configure options:</title>
  83. <varlistentry>
  84. <term><parameter>--host=$LFS_TGT, --build=$(../scripts/config.guess)</parameter></term>
  85. <listitem>
  86. <para>The combined effect of these switches is that Glibc's build system
  87. configures itself to be cross-compiled, using the cross-linker and
  88. cross-compiler in <filename class="directory">$LFS/tools</filename>.</para>
  89. </listitem>
  90. </varlistentry>
  91. <varlistentry>
  92. <term><parameter>--enable-kernel=&min-kernel;</parameter></term>
  93. <listitem>
  94. <para>This tells Glibc to compile the library with support
  95. for &min-kernel; and later Linux kernels. Workarounds for older
  96. kernels are not enabled.</para>
  97. </listitem>
  98. </varlistentry>
  99. <varlistentry>
  100. <term><parameter>--with-headers=$LFS/usr/include</parameter></term>
  101. <listitem>
  102. <para>This tells Glibc to compile itself against the headers
  103. recently installed to the $LFS/usr/include directory, so that
  104. it knows exactly what features the kernel has and can optimize
  105. itself accordingly.</para>
  106. </listitem>
  107. </varlistentry>
  108. <varlistentry>
  109. <term><parameter>libc_cv_slibdir=/lib</parameter></term>
  110. <listitem>
  111. <para>This ensures that the library is installed in /lib instead
  112. of the default /lib64 on 64 bit machines.</para>
  113. </listitem>
  114. </varlistentry>
  115. </variablelist>
  116. <para>During this stage the following warning might appear:</para>
  117. <blockquote>
  118. <screen><computeroutput>configure: WARNING:
  119. *** These auxiliary programs are missing or
  120. *** incompatible versions: msgfmt
  121. *** some features will be disabled.
  122. *** Check the INSTALL file for required versions.</computeroutput></screen>
  123. </blockquote>
  124. <para>The missing or incompatible <command>msgfmt</command> program is
  125. generally harmless. This <command>msgfmt</command> program is part of the
  126. Gettext package which the host distribution should provide.</para>
  127. <note><para>There have been reports that this package may fail when
  128. building as a "parallel make". If this occurs, rerun the make command
  129. with a "-j1" option.</para></note>
  130. <para>Compile the package:</para>
  131. <screen><userinput remap="make">make</userinput></screen>
  132. <para>Install the package:</para>
  133. <warning><para>If <envar>LFS</envar> is not properly set, and despite the
  134. recommendations, you are building as
  135. <systemitem class="username">root</systemitem>, the next command will
  136. install the newly built glibc to your host system, which most likely
  137. will render it unusable. So double check that the environment is
  138. correctly set, before running the following command.</para></warning>
  139. <screen><userinput remap="install">make DESTDIR=$LFS install</userinput></screen>
  140. <variablelist>
  141. <title>The meaning of the <command>make install</command> option:</title>
  142. <varlistentry>
  143. <term><parameter>DESTDIR=$LFS</parameter></term>
  144. <listitem>
  145. <para>The <envar>DESTDIR</envar> make variable is used by almost all
  146. packages to define the location where the package should be
  147. installed. If it is not set, it defaults to the root (<filename
  148. class="directory">/</filename>) directory. Here we specify that
  149. the package be installed in <filename class="directory">$LFS
  150. </filename>, which will become the root after <xref linkend=
  151. "ch-tools-chroot"/>.</para>
  152. </listitem>
  153. </varlistentry>
  154. </variablelist>
  155. <caution>
  156. <para>At this point, it is imperative to stop and ensure that the basic
  157. functions (compiling and linking) of the new toolchain are working as
  158. expected. To perform a sanity check, run the following commands:</para>
  159. <screen><userinput>echo 'int main(){}' &gt; dummy.c
  160. $LFS_TGT-gcc dummy.c
  161. readelf -l a.out | grep '/ld-linux'</userinput></screen>
  162. <para>If everything is working correctly, there should be no errors,
  163. and the output of the last command will be of the form:</para>
  164. <screen><computeroutput>[Requesting program interpreter: /lib64/ld-linux-x86-64.so.2]</computeroutput></screen>
  165. <para arch="default">Note that for 32-bit machines, the interpreter name will be
  166. <filename>/lib/ld-linux.so.2</filename>.</para>
  167. <para>If the output is not shown as above or there was no output at all,
  168. then something is wrong. Investigate and retrace the steps to find out
  169. where the problem is and correct it. This issue must be resolved before
  170. continuing on.</para>
  171. <para>Once all is well, clean up the test files:</para>
  172. <screen><userinput>rm -v dummy.c a.out</userinput></screen>
  173. </caution>
  174. <note><para>Building packages in the next chapter will serve as an
  175. additional check that the toolchain has been built properly. If some
  176. package, especially binutils-pass2 or gcc-pass2, fails to build, it is
  177. an indication that something has gone wrong with the
  178. previous Binutils, GCC, or Glibc installations.</para></note>
  179. <para>Now that our cross-toolchain is complete, finalize the installation
  180. of the limits.h header. For doing so, run a utility provided by the GCC
  181. developers:</para>
  182. <screen><userinput>$LFS/tools/libexec/gcc/$LFS_TGT/&gcc-version;/install-tools/mkheaders</userinput></screen>
  183. </sect2>
  184. <!-- - - - - - - - - - -->
  185. <!-- Multilib - 32bit -->
  186. <!-- - - - - - - - - - -->
  187. <sect2 arch="ml_32,ml_all">
  188. <title>Building Glibc - 32bit</title>
  189. <para>Now recompile for m32. The extracted source can be
  190. reused but needs to cleaned before installing the m32
  191. version of Glibc.</para>
  192. <para>Clear the build directory and remove artefacts from
  193. previous build:</para>
  194. <screen><userinput remap="pre">make clean
  195. find .. -name "*.a" -delete</userinput></screen>
  196. <para>Configure Glibc for m32 with the following commands:</para>
  197. <screen><userinput remap="configure">CC="$LFS_TGT-gcc -m32" \
  198. CXX="$LFS_TGT-g++ -m32" \
  199. ../configure \
  200. --prefix=/usr \
  201. --host=$LFS_TGT32 \
  202. --build=$(../scripts/config.guess) \
  203. --enable-kernel=&min-kernel; \
  204. --with-headers=$LFS/usr/include \
  205. --enable-multi-arch \
  206. --libdir=&usr-lib-m32; \
  207. --libexecdir=&usr-lib-m32; \
  208. libc_cv_slibdir=&lib-m32;</userinput></screen>
  209. <para>Compile the package:</para>
  210. <screen><userinput remap="make">make</userinput></screen>
  211. <para>Install the package:</para>
  212. <screen><userinput remap="install">make DESTDIR=$PWD/DESTDIR install
  213. cp -a DESTDIR&lib-m32;/* $LFS&lib-m32;/
  214. cp -a DESTDIR&usr-lib-m32; $LFS/usr/
  215. install -vm644 DESTDIR/usr/include/gnu/{lib-names,stubs}-32.h \
  216. $LFS/usr/include/gnu/
  217. ln -svf ..&lib-m32;/ld-linux.so.2 $LFS/lib/ld-linux.so.2</userinput></screen>
  218. <caution>
  219. <para>At this point, it is imperative to stop and ensure that the basic
  220. functions (compiling and linking) of the new toolchain are working as
  221. expected. To perform a sanity check, run the following commands:</para>
  222. <screen><userinput>echo 'int main(){}' &gt; dummy.c
  223. $LFS_TGT-gcc -m32 dummy.c
  224. readelf -l a.out | grep '/ld-linux'</userinput></screen>
  225. <para>If everything is working correctly, there should be no errors,
  226. and the output of the last command will be of the form:</para>
  227. <screen><computeroutput>[Requesting program interpreter: /lib/ld-linux.so.2]</computeroutput></screen>
  228. <para>If the output is not shown as above or there was no output at all,
  229. then something is wrong. Investigate and retrace the steps to find out
  230. where the problem is and correct it. This issue must be resolved before
  231. continuing on.</para>
  232. <para>Once all is well, clean up the test files:</para>
  233. <screen><userinput>rm -v dummy.c a.out</userinput></screen>
  234. </caution>
  235. </sect2><!-- m32 -->
  236. <!-- - - - - - - - - - -->
  237. <!-- Multilib - x32bit -->
  238. <!-- - - - - - - - - - -->
  239. <sect2 arch="ml_x32,ml_all">
  240. <title>Building Glibc - x32bit</title>
  241. <para>Now recompile for mx32. The extracted source can be
  242. reused but needs to cleaned before installing the mx32
  243. version of Glibc.</para>
  244. <para>Clear the build directory and remove artefacts from
  245. previous build:</para>
  246. <screen><userinput remap="pre">make clean
  247. find .. -name "*.a" -delete</userinput></screen>
  248. <para>Configure Glibc for mx32 with the following commands:</para>
  249. <screen><userinput remap="configure">CC="$LFS_TGT-gcc -mx32" \
  250. CXX="$LFS_TGT-g++ -mx32" \
  251. ../configure \
  252. --prefix=/usr \
  253. --host=$LFS_TGTX32 \
  254. --build=$(../scripts/config.guess) \
  255. --enable-kernel=&min-kernel; \
  256. --with-headers=$LFS/usr/include \
  257. --enable-multi-arch \
  258. --libdir=&usr-lib-mx32; \
  259. --libexecdir=&usr-lib-mx32; \
  260. libc_cv_slibdir=&lib-mx32;</userinput></screen>
  261. <para>Compile the package:</para>
  262. <screen><userinput remap="make">make</userinput></screen>
  263. <para>Install the package:</para>
  264. <screen><userinput remap="install">make DESTDIR=$PWD/DESTDIR install
  265. cp -a DESTDIR&lib-mx32;/* $LFS&lib-mx32;/
  266. cp -a DESTDIR&usr-lib-mx32; $LFS/usr/
  267. install -vm644 DESTDIR/usr/include/gnu/{lib-names,stubs}-x32.h \
  268. $LFS/usr/include/gnu/
  269. ln -svf ..&lib-mx32;/ld-linux-x32.so.2 $LFS/lib/ld-linux-x32.so.2</userinput></screen>
  270. <caution>
  271. <para>At this point, it is imperative to stop and ensure that the basic
  272. functions (compiling and linking) of the new toolchain are working as
  273. expected. To perform a sanity check, run the following commands:</para>
  274. <screen><userinput>echo 'int main(){}' &gt; dummy.c
  275. $LFS_TGT-gcc -mx32 dummy.c
  276. readelf -l a.out | grep '/ld-linux-x32'</userinput></screen>
  277. <para>If everything is working correctly, there should be no errors,
  278. and the output of the last command will be of the form:</para>
  279. <screen><computeroutput>[Requesting program interpreter: /libx32/ld-linux-x32.so.2]</computeroutput></screen>
  280. <para>If the output is not shown as above or there was no output at all,
  281. then something is wrong. Investigate and retrace the steps to find out
  282. where the problem is and correct it. This issue must be resolved before
  283. continuing on.</para>
  284. <para>Once all is well, clean up the test files:</para>
  285. <screen><userinput>rm -v dummy.c a.out</userinput></screen>
  286. </caution>
  287. </sect2><!-- mx32 -->
  288. <sect2 role="content">
  289. <title/>
  290. <para>Details on this package are located in
  291. <xref linkend="contents-glibc" role="."/></para>
  292. </sect2>
  293. </sect1>