glibc.xml 14 KB

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