glibc.xml 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398
  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. <varlistentry>
  116. <term><option>libc_cv_include_x86_isa_level=no</option></term>
  117. <listitem>
  118. <para>This disables <quote>x86 ISA needed</quote> property in
  119. Glibc libraries. Use it <emphasis role="bold">if</emphasis>
  120. you are building Glibc with <option>-march</option> option in
  121. <envar>CFLAGS</envar>, to workaround an issue in Glibc-2.33
  122. breaking it.</para>
  123. </listitem>
  124. </varlistentry>
  125. </variablelist>
  126. <para>During this stage the following warning might appear:</para>
  127. <blockquote>
  128. <screen><computeroutput>configure: WARNING:
  129. *** These auxiliary programs are missing or
  130. *** incompatible versions: msgfmt
  131. *** some features will be disabled.
  132. *** Check the INSTALL file for required versions.</computeroutput></screen>
  133. </blockquote>
  134. <para>The missing or incompatible <command>msgfmt</command> program is
  135. generally harmless. This <command>msgfmt</command> program is part of the
  136. Gettext package which the host distribution should provide.</para>
  137. <note><para>There have been reports that this package may fail when
  138. building as a "parallel make". If this occurs, rerun the make command
  139. with a "-j1" option.</para></note>
  140. <para>Compile the package:</para>
  141. <screen><userinput remap="make">make</userinput></screen>
  142. <para>Install the package:</para>
  143. <warning><para>If <envar>LFS</envar> is not properly set, and despite the
  144. recommendations, you are building as
  145. <systemitem class="username">root</systemitem>, the next command will
  146. install the newly built glibc to your host system, which most likely
  147. will render it unusable. So double check that the environment is
  148. correctly set, before running the following command.</para></warning>
  149. <screen><userinput remap="install">make DESTDIR=$LFS install</userinput></screen>
  150. <variablelist>
  151. <title>The meaning of the <command>make install</command> option:</title>
  152. <varlistentry>
  153. <term><parameter>DESTDIR=$LFS</parameter></term>
  154. <listitem>
  155. <para>The <envar>DESTDIR</envar> make variable is used by almost all
  156. packages to define the location where the package should be
  157. installed. If it is not set, it defaults to the root (<filename
  158. class="directory">/</filename>) directory. Here we specify that
  159. the package be installed in <filename class="directory">$LFS
  160. </filename>, which will become the root after <xref linkend=
  161. "ch-tools-chroot"/>.</para>
  162. </listitem>
  163. </varlistentry>
  164. </variablelist>
  165. <caution>
  166. <para>At this point, it is imperative to stop and ensure that the basic
  167. functions (compiling and linking) of the new toolchain are working as
  168. expected. To perform a sanity check, run the following commands:</para>
  169. <screen><userinput>echo 'int main(){}' &gt; dummy.c
  170. $LFS_TGT-gcc dummy.c
  171. readelf -l a.out | grep '/ld-linux'</userinput></screen>
  172. <para>If everything is working correctly, there should be no errors,
  173. and the output of the last command will be of the form:</para>
  174. <screen><computeroutput>[Requesting program interpreter: /lib64/ld-linux-x86-64.so.2]</computeroutput></screen>
  175. <para arch="default">Note that for 32-bit machines, the interpreter name will be
  176. <filename>/lib/ld-linux.so.2</filename>.</para>
  177. <para>If the output is not shown as above or there was no output at all,
  178. then something is wrong. Investigate and retrace the steps to find out
  179. where the problem is and correct it. This issue must be resolved before
  180. continuing on.</para>
  181. <para>Once all is well, clean up the test files:</para>
  182. <screen><userinput>rm -v dummy.c a.out</userinput></screen>
  183. </caution>
  184. <note><para>Building packages in the next chapter will serve as an
  185. additional check that the toolchain has been built properly. If some
  186. package, especially binutils-pass2 or gcc-pass2, fails to build, it is
  187. an indication that something has gone wrong with the
  188. previous Binutils, GCC, or Glibc installations.</para></note>
  189. <para>Now that our cross-toolchain is complete, finalize the installation
  190. of the limits.h header. For doing so, run a utility provided by the GCC
  191. developers:</para>
  192. <screen><userinput>$LFS/tools/libexec/gcc/$LFS_TGT/&gcc-version;/install-tools/mkheaders</userinput></screen>
  193. </sect2>
  194. <!-- - - - - - - - - - -->
  195. <!-- Multilib - 32bit -->
  196. <!-- - - - - - - - - - -->
  197. <sect2 arch="ml_32,ml_all">
  198. <title>Building Glibc - 32bit</title>
  199. <para>Now recompile for m32. The extracted source can be
  200. reused but needs to cleaned before installing the m32
  201. version of Glibc.</para>
  202. <para>Clear the build directory and remove artefacts from
  203. previous build:</para>
  204. <screen><userinput remap="pre">make clean
  205. find .. -name "*.a" -delete</userinput></screen>
  206. <para>Configure Glibc for m32 with the following commands:</para>
  207. <screen><userinput remap="configure">CC="$LFS_TGT-gcc -m32" \
  208. CXX="$LFS_TGT-g++ -m32" \
  209. ../configure \
  210. --prefix=/usr \
  211. --host=$LFS_TGT32 \
  212. --build=$(../scripts/config.guess) \
  213. --enable-kernel=&min-kernel; \
  214. --with-headers=$LFS/usr/include \
  215. --enable-multi-arch \
  216. --libdir=&usr-lib-m32; \
  217. --libexecdir=&usr-lib-m32; \
  218. libc_cv_slibdir=&lib-m32;</userinput></screen>
  219. <para>Compile the package:</para>
  220. <screen><userinput remap="make">make</userinput></screen>
  221. <para>Install the package:</para>
  222. <screen><userinput remap="install">make DESTDIR=$PWD/DESTDIR install
  223. cp -a DESTDIR&lib-m32;/* $LFS&lib-m32;/
  224. cp -a DESTDIR&usr-lib-m32; $LFS/usr/
  225. install -vm644 DESTDIR/usr/include/gnu/{lib-names,stubs}-32.h \
  226. $LFS/usr/include/gnu/
  227. ln -svf ..&lib-m32;/ld-linux.so.2 $LFS/lib/ld-linux.so.2</userinput></screen>
  228. <caution>
  229. <para>At this point, it is imperative to stop and ensure that the basic
  230. functions (compiling and linking) of the new toolchain are working as
  231. expected. To perform a sanity check, run the following commands:</para>
  232. <screen><userinput>echo 'int main(){}' &gt; dummy.c
  233. $LFS_TGT-gcc -m32 dummy.c
  234. readelf -l a.out | grep '/ld-linux'</userinput></screen>
  235. <para>If everything is working correctly, there should be no errors,
  236. and the output of the last command will be of the form:</para>
  237. <screen><computeroutput>[Requesting program interpreter: /lib/ld-linux.so.2]</computeroutput></screen>
  238. <para>If the output is not shown as above or there was no output at all,
  239. then something is wrong. Investigate and retrace the steps to find out
  240. where the problem is and correct it. This issue must be resolved before
  241. continuing on.</para>
  242. <para>Once all is well, clean up the test files:</para>
  243. <screen><userinput>rm -v dummy.c a.out</userinput></screen>
  244. </caution>
  245. </sect2><!-- m32 -->
  246. <!-- - - - - - - - - - -->
  247. <!-- Multilib - x32bit -->
  248. <!-- - - - - - - - - - -->
  249. <sect2 arch="ml_x32,ml_all">
  250. <title>Building Glibc - x32bit</title>
  251. <para>Now recompile for mx32. The extracted source can be
  252. reused but needs to cleaned before installing the mx32
  253. version of Glibc.</para>
  254. <para>Clear the build directory and remove artefacts from
  255. previous build:</para>
  256. <screen><userinput remap="pre">make clean
  257. find .. -name "*.a" -delete</userinput></screen>
  258. <para>Configure Glibc for mx32 with the following commands:</para>
  259. <screen><userinput remap="configure">CC="$LFS_TGT-gcc -mx32" \
  260. CXX="$LFS_TGT-g++ -mx32" \
  261. ../configure \
  262. --prefix=/usr \
  263. --host=$LFS_TGTX32 \
  264. --build=$(../scripts/config.guess) \
  265. --enable-kernel=&min-kernel; \
  266. --with-headers=$LFS/usr/include \
  267. --enable-multi-arch \
  268. --libdir=&usr-lib-mx32; \
  269. --libexecdir=&usr-lib-mx32; \
  270. libc_cv_slibdir=&lib-mx32;</userinput></screen>
  271. <para>Compile the package:</para>
  272. <screen><userinput remap="make">make</userinput></screen>
  273. <para>Install the package:</para>
  274. <screen><userinput remap="install">make DESTDIR=$PWD/DESTDIR install
  275. cp -a DESTDIR&lib-mx32;/* $LFS&lib-mx32;/
  276. cp -a DESTDIR&usr-lib-mx32; $LFS/usr/
  277. install -vm644 DESTDIR/usr/include/gnu/{lib-names,stubs}-x32.h \
  278. $LFS/usr/include/gnu/
  279. ln -svf ..&lib-mx32;/ld-linux-x32.so.2 $LFS/lib/ld-linux-x32.so.2</userinput></screen>
  280. <caution>
  281. <para>At this point, it is imperative to stop and ensure that the basic
  282. functions (compiling and linking) of the new toolchain are working as
  283. expected. To perform a sanity check, run the following commands:</para>
  284. <screen><userinput>echo 'int main(){}' &gt; dummy.c
  285. $LFS_TGT-gcc -mx32 dummy.c
  286. readelf -l a.out | grep '/ld-linux-x32'</userinput></screen>
  287. <para>If everything is working correctly, there should be no errors,
  288. and the output of the last command will be of the form:</para>
  289. <screen><computeroutput>[Requesting program interpreter: /libx32/ld-linux-x32.so.2]</computeroutput></screen>
  290. <para>If the output is not shown as above or there was no output at all,
  291. then something is wrong. Investigate and retrace the steps to find out
  292. where the problem is and correct it. This issue must be resolved before
  293. continuing on.</para>
  294. <para>Once all is well, clean up the test files:</para>
  295. <screen><userinput>rm -v dummy.c a.out</userinput></screen>
  296. </caution>
  297. </sect2><!-- mx32 -->
  298. <sect2 role="content">
  299. <title/>
  300. <para>Details on this package are located in
  301. <xref linkend="contents-glibc" role="."/></para>
  302. </sect2>
  303. </sect1>