glibc.xml 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962
  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-system-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-system-glibc">
  16. <primary sortas="a-Glibc">Glibc</primary>
  17. </indexterm>
  18. <sect2 role="package">
  19. <title/>
  20. <para>The Glibc package contains the main C library. This library provides
  21. the basic routines for allocating memory, searching directories, opening and
  22. closing files, reading and writing files, string handling, pattern matching,
  23. arithmetic, and so on.</para>
  24. <segmentedlist>
  25. <segtitle>&buildtime;</segtitle>
  26. <segtitle>&diskspace;</segtitle>
  27. <seglistitem>
  28. <seg>&glibc-ch6-sbu;</seg>
  29. <seg>&glibc-ch6-du;</seg>
  30. </seglistitem>
  31. </segmentedlist>
  32. </sect2>
  33. <sect2 role="installation">
  34. <title>Installation of Glibc</title>
  35. <note><para>The Glibc build system is self-contained and will install
  36. perfectly, even though the compiler specs file and linker are still
  37. pointing to <filename class="directory">/tools</filename>. The specs
  38. and linker cannot be adjusted before the Glibc install because the
  39. Glibc autoconf tests would give false results and defeat the goal
  40. of achieving a clean build.</para></note>
  41. <para>Some of the Glibc programs use non-FHS compilant
  42. <filename class="directory">/var/db</filename> directory to store
  43. their runtime data. Apply the following patch to make such programs
  44. store their runtime data in the FHS-compliant locations:</para>
  45. <screen><userinput remap="pre">patch -Np1 -i ../&glibc-fhs-patch;</userinput></screen>
  46. <para>First create a compatibility symlink to avoid references to /tools in
  47. our final glibc:</para>
  48. <screen><userinput remap="pre">ln -sfv /tools/lib/gcc /usr/lib</userinput></screen>
  49. <para>Determine the GCC include directory and create a symlink for LSB
  50. compliance. Additionally, for x86_64, create a compatibility symlink
  51. required for the dynamic loader to function correctly:</para>
  52. <screen><userinput remap="pre">case $(uname -m) in
  53. i?86) GCC_INCDIR=/usr/lib/gcc/$(uname -m)-pc-linux-gnu/&gcc-version;/include
  54. ln -sfv ld-linux.so.2 /lib/ld-lsb.so.3
  55. ;;
  56. x86_64) GCC_INCDIR=/usr/lib/gcc/x86_64-pc-linux-gnu/&gcc-version;/include
  57. ln -sfv ../lib/ld-linux-x86-64.so.2 /lib64
  58. ln -sfv ../lib/ld-linux-x86-64.so.2 /lib64/ld-lsb-x86-64.so.3
  59. ;;
  60. esac</userinput></screen>
  61. <para>Remove a file that may be left over from a previous build attempt:
  62. </para>
  63. <screen><userinput remap="pre">rm -f /usr/include/limits.h</userinput></screen>
  64. <para>The Glibc documentation recommends building Glibc
  65. in a dedicated build directory:</para>
  66. <screen><userinput remap="pre">mkdir -v build
  67. cd build</userinput></screen>
  68. <para>Prepare Glibc for compilation:</para>
  69. <screen><userinput remap="configure">CC="gcc -isystem $GCC_INCDIR -isystem /usr/include" \
  70. ../configure --prefix=/usr \
  71. --disable-werror \
  72. --enable-kernel=&min-kernel; \
  73. --enable-obsolete-rpc \
  74. --enable-stack-protector=strong \
  75. libc_cv_slibdir=/lib
  76. unset GCC_INCDIR</userinput></screen>
  77. <variablelist>
  78. <title>The meaning of the options and new configure parameters:</title>
  79. <varlistentry>
  80. <term><parameter>CC="gcc -isystem $GCC_INCDIR -isystem /usr/include"</parameter></term>
  81. <listitem>
  82. <para>Setting the location of both gcc and system include directories
  83. avoids introduction of invalid paths in debugging symbols.</para>
  84. </listitem>
  85. </varlistentry>
  86. <varlistentry>
  87. <term><parameter>--disable-werror</parameter></term>
  88. <listitem>
  89. <para>This option disables the -Werror option passed to
  90. GCC. This is necessary for running the test suite.</para>
  91. </listitem>
  92. </varlistentry>
  93. <varlistentry>
  94. <term><parameter>--enable-obsolete-rpc</parameter></term>
  95. <listitem>
  96. <para>This option builds older RPC code for use with
  97. network file system utilities (nfs).</para>
  98. </listitem>
  99. </varlistentry>
  100. <varlistentry>
  101. <term><parameter>--enable-stack-protector=strong</parameter></term>
  102. <listitem>
  103. <para>This option increases system security by adding a known canary
  104. (a random integer) to the stack during a function preamble, and checks
  105. it when the function returns. If it changed, there was a stack
  106. overflow, and the program aborts.</para>
  107. </listitem>
  108. </varlistentry>
  109. <varlistentry>
  110. <term><parameter>libc_cv_slibdir=/lib</parameter></term>
  111. <listitem>
  112. <para>This variable sets the correct library for all
  113. systems. We do not want lib64 to be used.</para>
  114. </listitem>
  115. </varlistentry>
  116. </variablelist>
  117. <para>Compile the package:</para>
  118. <screen><userinput remap="make">make</userinput></screen>
  119. <important>
  120. <para>In this section, the test suite for Glibc is considered critical.
  121. Do not skip it under any circumstance.</para>
  122. </important>
  123. <para>Generally a few tests do not pass, but you can generally ignore
  124. any of the test failures listed below. Now test the build results:</para>
  125. <screen><userinput remap="test">make check</userinput></screen>
  126. <para>You may see some test failures. The Glibc test suite is
  127. somewhat dependent on the host system. This is a list of the most common
  128. issues seen for some versions of LFS:</para>
  129. <itemizedlist>
  130. <listitem>
  131. <para><emphasis>posix/tst-getaddrinfo4</emphasis> and
  132. <emphasis>posix/tst-getaddrinfo5</emphasis>
  133. may fail on some architectures.</para>
  134. </listitem>
  135. <listitem>
  136. <para>The <emphasis>rt/tst-cputimer1</emphasis> and
  137. <emphasis>rt/tst-cpuclock2</emphasis> tests have been known to
  138. fail. The reason is not completely understood, but indications are
  139. that minor timing issues can trigger these failures.</para>
  140. </listitem>
  141. <listitem>
  142. <para>The math tests sometimes fail when running on
  143. systems where the CPU is not a relatively new Intel or
  144. AMD processor.</para>
  145. </listitem>
  146. <listitem>
  147. <para>The
  148. <emphasis>nptl/tst-thread-affinity-{pthread,pthread2,sched}</emphasis>
  149. tests may fail for reasons that have not been determined. </para>
  150. </listitem>
  151. <listitem>
  152. <para>Other tests known to fail on some architectures are
  153. malloc/tst-malloc-usable and nptl/tst-cleanupx4. </para>
  154. </listitem>
  155. </itemizedlist>
  156. <para>Though it is a harmless message, the install stage of Glibc will
  157. complain about the absence of <filename>/etc/ld.so.conf</filename>.
  158. Prevent this warning with:</para>
  159. <screen><userinput remap="install">touch /etc/ld.so.conf</userinput></screen>
  160. <para>Fix the generated Makefile to skip an uneeded sanity check
  161. that fails in the LFS partial environment:
  162. </para>
  163. <screen><userinput remap="install">sed '/test-installation/s@$(PERL)@echo not running@' -i ../Makefile</userinput></screen>
  164. <para>Install the package:</para>
  165. <screen><userinput remap="install">make install</userinput></screen>
  166. <para>Install the configuration file and runtime directory for
  167. <command>nscd</command>:</para>
  168. <screen><userinput remap="install">cp -v ../nscd/nscd.conf /etc/nscd.conf
  169. mkdir -pv /var/cache/nscd</userinput></screen>
  170. <para revision="systemd">Install the systemd support files for
  171. <command>nscd</command>:</para>
  172. <screen revision="systemd"><userinput remap="install">install -v -Dm644 ../nscd/nscd.tmpfiles /usr/lib/tmpfiles.d/nscd.conf
  173. install -v -Dm644 ../nscd/nscd.service /lib/systemd/system/nscd.service</userinput></screen>
  174. <para>Next, install the locales that can make the system respond in a
  175. different language. None of the locales are required, but if some of them
  176. are missing, the test suites of future packages would skip important
  177. testcases.</para>
  178. <para>Individual locales can be installed using the
  179. <command>localedef</command> program. E.g., the first
  180. <command>localedef</command> command below combines the
  181. <filename>/usr/share/i18n/locales/cs_CZ</filename>
  182. charset-independent locale definition with the
  183. <filename>/usr/share/i18n/charmaps/UTF-8.gz</filename>
  184. charmap definition and appends the result to the
  185. <filename>/usr/lib/locale/locale-archive</filename> file.
  186. The following instructions will install the minimum set of
  187. locales necessary for the optimal coverage of tests:</para>
  188. <screen role="nodump"><userinput remap="locale-test">mkdir -pv /usr/lib/locale
  189. localedef -i cs_CZ -f UTF-8 cs_CZ.UTF-8
  190. localedef -i de_DE -f ISO-8859-1 de_DE
  191. localedef -i de_DE@euro -f ISO-8859-15 de_DE@euro
  192. localedef -i de_DE -f UTF-8 de_DE.UTF-8
  193. localedef -i en_GB -f UTF-8 en_GB.UTF-8
  194. localedef -i en_HK -f ISO-8859-1 en_HK
  195. localedef -i en_PH -f ISO-8859-1 en_PH
  196. localedef -i en_US -f ISO-8859-1 en_US
  197. localedef -i en_US -f UTF-8 en_US.UTF-8
  198. localedef -i es_MX -f ISO-8859-1 es_MX
  199. localedef -i fa_IR -f UTF-8 fa_IR
  200. localedef -i fr_FR -f ISO-8859-1 fr_FR
  201. localedef -i fr_FR@euro -f ISO-8859-15 fr_FR@euro
  202. localedef -i fr_FR -f UTF-8 fr_FR.UTF-8
  203. localedef -i it_IT -f ISO-8859-1 it_IT
  204. localedef -i it_IT -f UTF-8 it_IT.UTF-8
  205. localedef -i ja_JP -f EUC-JP ja_JP
  206. localedef -i ru_RU -f KOI8-R ru_RU.KOI8-R
  207. localedef -i ru_RU -f UTF-8 ru_RU.UTF-8
  208. localedef -i tr_TR -f UTF-8 tr_TR.UTF-8
  209. localedef -i zh_CN -f GB18030 zh_CN.GB18030</userinput></screen>
  210. <para>In addition, install the locale for your own country, language and
  211. character set.</para>
  212. <para>Alternatively, install all locales listed in the
  213. <filename>glibc-&glibc-version;/localedata/SUPPORTED</filename> file
  214. (it includes every locale listed above and many more) at once with the
  215. following time-consuming command:</para>
  216. <screen><userinput remap="locale-full">make localedata/install-locales</userinput></screen>
  217. <para>Then use the <command>localedef</command> command to create and
  218. install locales not listed in the
  219. <filename>glibc-&glibc-version;/localedata/SUPPORTED</filename> file
  220. in the unlikely case you need them.</para>
  221. </sect2>
  222. <sect2 id="conf-glibc" role="configuration">
  223. <title>Configuring Glibc</title>
  224. <indexterm zone="conf-glibc">
  225. <primary sortas="e-/etc/nsswitch.conf">/etc/nsswitch.conf</primary>
  226. </indexterm>
  227. <indexterm zone="conf-glibc">
  228. <primary sortas="e-/etc/localtime">/etc/localtime</primary>
  229. </indexterm>
  230. <sect3>
  231. <title>Adding nsswitch.conf</title>
  232. <para>The <filename>/etc/nsswitch.conf</filename> file needs to be created
  233. because the Glibc defaults do not work well in a networked environment.
  234. </para>
  235. <para>Create a new file <filename>/etc/nsswitch.conf</filename> by running the
  236. following:</para>
  237. <screen><userinput>cat &gt; /etc/nsswitch.conf &lt;&lt; "EOF"
  238. <literal># Begin /etc/nsswitch.conf
  239. passwd: files
  240. group: files
  241. shadow: files
  242. hosts: files dns
  243. networks: files
  244. protocols: files
  245. services: files
  246. ethers: files
  247. rpc: files
  248. # End /etc/nsswitch.conf</literal>
  249. EOF</userinput></screen>
  250. </sect3>
  251. <sect3>
  252. <title>Adding time zone data</title>
  253. <para>Install and set up the time zone data with the following:</para>
  254. <screen><userinput>tar -xf ../../tzdata&tzdata-version;.tar.gz
  255. ZONEINFO=/usr/share/zoneinfo
  256. mkdir -pv $ZONEINFO/{posix,right}
  257. for tz in etcetera southamerica northamerica europe africa antarctica \
  258. asia australasia backward pacificnew systemv; do
  259. zic -L /dev/null -d $ZONEINFO -y "sh yearistype.sh" ${tz}
  260. zic -L /dev/null -d $ZONEINFO/posix -y "sh yearistype.sh" ${tz}
  261. zic -L leapseconds -d $ZONEINFO/right -y "sh yearistype.sh" ${tz}
  262. done
  263. cp -v zone.tab zone1970.tab iso3166.tab $ZONEINFO
  264. zic -d $ZONEINFO -p America/New_York
  265. unset ZONEINFO</userinput></screen>
  266. <variablelist>
  267. <title>The meaning of the zic commands:</title>
  268. <varlistentry>
  269. <term><parameter>zic -L /dev/null ...</parameter></term>
  270. <listitem>
  271. <para>This creates posix time zones, without any leap seconds. It is
  272. conventional to put these in both
  273. <filename class="directory">zoneinfo</filename> and
  274. <filename class="directory">zoneinfo/posix</filename>. It is
  275. necessary to put the POSIX time zones in
  276. <filename class="directory">zoneinfo</filename>, otherwise various
  277. test-suites will report errors. On an embedded system, where space is
  278. tight and you do not intend to ever update the time zones, you could save
  279. 1.9MB by not using the <filename class="directory">posix</filename>
  280. directory, but some applications or test-suites might produce some
  281. failures.</para>
  282. </listitem>
  283. </varlistentry>
  284. <varlistentry>
  285. <term><parameter>zic -L leapseconds ...</parameter></term>
  286. <listitem>
  287. <para>This creates right time zones, including leap seconds. On an
  288. embedded system, where space is tight and you do not intend to
  289. ever update the time zones, or care about the correct time, you could
  290. save 1.9MB by omitting the <filename class="directory">right</filename>
  291. directory.</para>
  292. </listitem>
  293. </varlistentry>
  294. <varlistentry>
  295. <term><parameter>zic ... -p ...</parameter></term>
  296. <listitem>
  297. <para>This creates the <filename>posixrules</filename> file. We use
  298. New York because POSIX requires the daylight savings time rules
  299. to be in accordance with US rules.</para>
  300. </listitem>
  301. </varlistentry>
  302. </variablelist>
  303. <para>One way to determine the local time zone is to run the following
  304. script:</para>
  305. <screen role="nodump"><userinput>tzselect</userinput></screen>
  306. <para>After answering a few questions about the location, the script will
  307. output the name of the time zone (e.g.,
  308. <emphasis>America/Edmonton</emphasis>). There are also some other possible
  309. time zones listed in <filename
  310. class='directory'>/usr/share/zoneinfo</filename> such as
  311. <emphasis>Canada/Eastern</emphasis> or <emphasis>EST5EDT</emphasis> that
  312. are not identified by the script but can be used.</para>
  313. <para>Then create the <filename>/etc/localtime</filename> file by
  314. running:</para>
  315. <screen revision="sysv"><userinput>cp -v /usr/share/zoneinfo/<replaceable>&lt;xxx&gt;</replaceable> /etc/localtime</userinput></screen>
  316. <screen revision="systemd"><userinput>ln -sfv /usr/share/zoneinfo/<replaceable>&lt;xxx&gt;</replaceable> /etc/localtime</userinput></screen>
  317. <para>Replace <replaceable>&lt;xxx&gt;</replaceable> with the name of the
  318. time zone selected (e.g., Canada/Eastern).</para>
  319. </sect3>
  320. <sect3 id="conf-ld" role="configuration">
  321. <title>Configuring the Dynamic Loader</title>
  322. <indexterm zone="conf-ld">
  323. <primary sortas="e-/etc/ld.so.conf">/etc/ld.so.conf</primary>
  324. </indexterm>
  325. <para>By default, the dynamic loader (<filename
  326. class="libraryfile">/lib/ld-linux.so.2</filename>) searches through
  327. <filename class="directory">/lib</filename> and <filename
  328. class="directory">/usr/lib</filename> for dynamic libraries that are
  329. needed by programs as they are run. However, if there are libraries in
  330. directories other than <filename class="directory">/lib</filename> and
  331. <filename class="directory">/usr/lib</filename>, these need to be added
  332. to the <filename>/etc/ld.so.conf</filename> file in order for the
  333. dynamic loader to find them. Two directories that are commonly known
  334. to contain additional libraries are <filename
  335. class="directory">/usr/local/lib</filename> and <filename
  336. class="directory">/opt/lib</filename>, so add those directories to the
  337. dynamic loader's search path.</para>
  338. <para>Create a new file <filename>/etc/ld.so.conf</filename> by running the
  339. following:</para>
  340. <screen><userinput>cat &gt; /etc/ld.so.conf &lt;&lt; "EOF"
  341. <literal># Begin /etc/ld.so.conf
  342. /usr/local/lib
  343. /opt/lib
  344. </literal>
  345. EOF</userinput></screen>
  346. <para>If desired, the dynamic loader can also search a directory and
  347. include the contents of files found there. Generally the files in
  348. this include directory are one line specifying the desired library path.
  349. To add this capability run the following commands:</para>
  350. <screen role="nodump"><userinput>cat &gt;&gt; /etc/ld.so.conf &lt;&lt; "EOF"
  351. <literal># Add an include directory
  352. include /etc/ld.so.conf.d/*.conf
  353. </literal>
  354. EOF
  355. mkdir -pv /etc/ld.so.conf.d</userinput></screen>
  356. </sect3>
  357. </sect2>
  358. <sect2 id="contents-glibc" role="content">
  359. <title>Contents of Glibc</title>
  360. <segmentedlist>
  361. <segtitle>Installed programs</segtitle>
  362. <segtitle>Installed libraries</segtitle>
  363. <segtitle>Installed directories</segtitle>
  364. <seglistitem>
  365. <seg>catchsegv, gencat, getconf, getent, iconv, iconvconfig, ldconfig,
  366. ldd, lddlibc4, locale, localedef, makedb, mtrace, nscd,
  367. pldd, rpcgen, sln, sotruss, sprof, tzselect, xtrace,
  368. zdump, and zic</seg>
  369. <seg>ld-&glibc-version;.so, libBrokenLocale.{a,so}, libSegFault.so, libanl.{a,so},
  370. libc.{a,so}, libc_nonshared.a, libcidn.so,
  371. libcrypt.{a,so}, libdl.{a,so}, libg.a, libieee.a, libm.{a,so},
  372. libmcheck.a, libmemusage.so, libnsl.{a,so}, libnss_compat.so,
  373. libnss_dns.so, libnss_files.so, libnss_hesiod.so, libnss_nis.so,
  374. libnss_nisplus.so, libpthread.{a,so},
  375. libpthread_nonshared.a, libresolv.{a,so}, librpcsvc.a, librt.{a,so},
  376. libthread_db.so, and libutil.{a,so}</seg>
  377. <seg>/usr/include/arpa, /usr/include/bits, /usr/include/gnu,
  378. /usr/include/net, /usr/include/netash, /usr/include/netatalk,
  379. /usr/include/netax25, /usr/include/neteconet, /usr/include/netinet,
  380. /usr/include/netipx, /usr/include/netiucv, /usr/include/netpacket,
  381. /usr/include/netrom, /usr/include/netrose, /usr/include/nfs,
  382. /usr/include/protocols, /usr/include/rpc, /usr/include/rpcsvc,
  383. /usr/include/sys, /usr/lib/audit, /usr/lib/gconv, /usr/lib/locale,
  384. /usr/libexec/getconf, /usr/share/i18n, /usr/share/zoneinfo,
  385. /var/cache/nscd, and /var/lib/nss_db</seg>
  386. </seglistitem>
  387. </segmentedlist>
  388. <variablelist>
  389. <bridgehead renderas="sect3">Short Descriptions</bridgehead>
  390. <?dbfo list-presentation="list"?>
  391. <?dbhtml list-presentation="table"?>
  392. <varlistentry id="catchsegv">
  393. <term><command>catchsegv</command></term>
  394. <listitem>
  395. <para>Can be used to create a stack trace when a program
  396. terminates with a segmentation fault</para>
  397. <indexterm zone="ch-system-glibc catchsegv">
  398. <primary sortas="b-catchsegv">catchsegv</primary>
  399. </indexterm>
  400. </listitem>
  401. </varlistentry>
  402. <varlistentry id="gencat">
  403. <term><command>gencat</command></term>
  404. <listitem>
  405. <para>Generates message catalogues</para>
  406. <indexterm zone="ch-system-glibc gencat">
  407. <primary sortas="b-gencat">gencat</primary>
  408. </indexterm>
  409. </listitem>
  410. </varlistentry>
  411. <varlistentry id="getconf">
  412. <term><command>getconf</command></term>
  413. <listitem>
  414. <para>Displays the system configuration values for file system
  415. specific variables</para>
  416. <indexterm zone="ch-system-glibc getconf">
  417. <primary sortas="b-getconf">getconf</primary>
  418. </indexterm>
  419. </listitem>
  420. </varlistentry>
  421. <varlistentry id="getent">
  422. <term><command>getent</command></term>
  423. <listitem>
  424. <para>Gets entries from an administrative database</para>
  425. <indexterm zone="ch-system-glibc getent">
  426. <primary sortas="b-getent">getent</primary>
  427. </indexterm>
  428. </listitem>
  429. </varlistentry>
  430. <varlistentry id="iconv">
  431. <term><command>iconv</command></term>
  432. <listitem>
  433. <para>Performs character set conversion</para>
  434. <indexterm zone="ch-system-glibc iconv">
  435. <primary sortas="b-iconv">iconv</primary>
  436. </indexterm>
  437. </listitem>
  438. </varlistentry>
  439. <varlistentry id="iconvconfig">
  440. <term><command>iconvconfig</command></term>
  441. <listitem>
  442. <para>Creates fastloading <command>iconv</command> module configuration
  443. files</para>
  444. <indexterm zone="ch-system-glibc iconvconfig">
  445. <primary sortas="b-iconvconfig">iconvconfig</primary>
  446. </indexterm>
  447. </listitem>
  448. </varlistentry>
  449. <varlistentry id="ldconfig">
  450. <term><command>ldconfig</command></term>
  451. <listitem>
  452. <para>Configures the dynamic linker runtime bindings</para>
  453. <indexterm zone="ch-system-glibc ldconfig">
  454. <primary sortas="b-ldconfig">ldconfig</primary>
  455. </indexterm>
  456. </listitem>
  457. </varlistentry>
  458. <varlistentry id="ldd">
  459. <term><command>ldd</command></term>
  460. <listitem>
  461. <para>Reports which shared libraries are required
  462. by each given program or shared library</para>
  463. <indexterm zone="ch-system-glibc ldd">
  464. <primary sortas="b-ldd">ldd</primary>
  465. </indexterm>
  466. </listitem>
  467. </varlistentry>
  468. <varlistentry id="lddlibc4">
  469. <term><command>lddlibc4</command></term>
  470. <listitem>
  471. <para>Assists <command>ldd</command> with object files</para>
  472. <indexterm zone="ch-system-glibc lddlibc4">
  473. <primary sortas="b-lddlibc4">lddlibc4</primary>
  474. </indexterm>
  475. </listitem>
  476. </varlistentry>
  477. <varlistentry id="locale">
  478. <term><command>locale</command></term>
  479. <listitem>
  480. <para>Prints various information about the current locale</para>
  481. <indexterm zone="ch-system-glibc locale">
  482. <primary sortas="b-locale">locale</primary>
  483. </indexterm>
  484. </listitem>
  485. </varlistentry>
  486. <varlistentry id="localedef">
  487. <term><command>localedef</command></term>
  488. <listitem>
  489. <para>Compiles locale specifications</para>
  490. <indexterm zone="ch-system-glibc localedef">
  491. <primary sortas="b-localedef">localedef</primary>
  492. </indexterm>
  493. </listitem>
  494. </varlistentry>
  495. <varlistentry id="makedb">
  496. <term><command>makedb</command></term>
  497. <listitem>
  498. <para>Creates a simple database from textual input</para>
  499. <indexterm zone="ch-system-glibc makedb">
  500. <primary sortas="b-makedb">makedb</primary>
  501. </indexterm>
  502. </listitem>
  503. </varlistentry>
  504. <varlistentry id="mtrace">
  505. <term><command>mtrace</command></term>
  506. <listitem>
  507. <para>Reads and interprets a memory trace file and displays a summary
  508. in human-readable format</para>
  509. <indexterm zone="ch-system-glibc mtrace">
  510. <primary sortas="b-mtrace">mtrace</primary>
  511. </indexterm>
  512. </listitem>
  513. </varlistentry>
  514. <varlistentry id="nscd">
  515. <term><command>nscd</command></term>
  516. <listitem>
  517. <para>A daemon that provides a cache for the most common name
  518. service requests</para>
  519. <indexterm zone="ch-system-glibc nscd">
  520. <primary sortas="b-nscd">nscd</primary>
  521. </indexterm>
  522. </listitem>
  523. </varlistentry>
  524. <varlistentry id="pldd">
  525. <term><command>pldd</command></term>
  526. <listitem>
  527. <para>Lists dynamic shared objects used by running processes</para>
  528. <indexterm zone="ch-system-glibc pldd">
  529. <primary sortas="b-pldd">pldd</primary>
  530. </indexterm>
  531. </listitem>
  532. </varlistentry>
  533. <varlistentry id="rpcgen">
  534. <term><command>rpcgen</command></term>
  535. <listitem>
  536. <para>Generates C code to implement the Remote Procedure Call (RPC)
  537. protocol</para>
  538. <indexterm zone="ch-system-glibc rpcgen">
  539. <primary sortas="b-rpcgen">rpcgen</primary>
  540. </indexterm>
  541. </listitem>
  542. </varlistentry>
  543. <varlistentry id="sln">
  544. <term><command>sln</command></term>
  545. <listitem>
  546. <para>A statically linked <command>ln</command> program</para>
  547. <indexterm zone="ch-system-glibc sln">
  548. <primary sortas="b-sln">sln</primary>
  549. </indexterm>
  550. </listitem>
  551. </varlistentry>
  552. <varlistentry id="sotruss">
  553. <term><command>sotruss</command></term>
  554. <listitem>
  555. <para>Traces shared library procedure calls of a specified command</para>
  556. <indexterm zone="ch-system-glibc sotruss">
  557. <primary sortas="b-sotruss">sotruss</primary>
  558. </indexterm>
  559. </listitem>
  560. </varlistentry>
  561. <varlistentry id="sprof">
  562. <term><command>sprof</command></term>
  563. <listitem>
  564. <para>Reads and displays shared object profiling data</para>
  565. <indexterm zone="ch-system-glibc sprof">
  566. <primary sortas="b-sprof">sprof</primary>
  567. </indexterm>
  568. </listitem>
  569. </varlistentry>
  570. <varlistentry id="tzselect">
  571. <term><command>tzselect</command></term>
  572. <listitem>
  573. <para>Asks the user about the location of the system and reports
  574. the corresponding time zone description</para>
  575. <indexterm zone="ch-system-glibc tzselect">
  576. <primary sortas="b-tzselect">tzselect</primary>
  577. </indexterm>
  578. </listitem>
  579. </varlistentry>
  580. <varlistentry id="xtrace">
  581. <term><command>xtrace</command></term>
  582. <listitem>
  583. <para>Traces the execution of a program by printing the currently
  584. executed function</para>
  585. <indexterm zone="ch-system-glibc xtrace">
  586. <primary sortas="b-xtrace">xtrace</primary>
  587. </indexterm>
  588. </listitem>
  589. </varlistentry>
  590. <varlistentry id="zdump">
  591. <term><command>zdump</command></term>
  592. <listitem>
  593. <para>The time zone dumper</para>
  594. <indexterm zone="ch-system-glibc zdump">
  595. <primary sortas="b-zdump">zdump</primary>
  596. </indexterm>
  597. </listitem>
  598. </varlistentry>
  599. <varlistentry id="zic">
  600. <term><command>zic</command></term>
  601. <listitem>
  602. <para>The time zone compiler</para>
  603. <indexterm zone="ch-system-glibc zic">
  604. <primary sortas="b-zic">zic</primary>
  605. </indexterm>
  606. </listitem>
  607. </varlistentry>
  608. <varlistentry id="ld.so">
  609. <term><filename class="libraryfile">ld-&glibc-version;.so</filename></term>
  610. <listitem>
  611. <para>The helper program for shared library executables</para>
  612. <indexterm zone="ch-system-glibc ld.so">
  613. <primary sortas="c-ld.so">ld-&glibc-version;.so</primary>
  614. </indexterm>
  615. </listitem>
  616. </varlistentry>
  617. <varlistentry id="libBrokenLocale">
  618. <term><filename class="libraryfile">libBrokenLocale</filename></term>
  619. <listitem>
  620. <para>Used internally by Glibc as a gross hack to get broken programs
  621. (e.g., some Motif applications) running. See comments in
  622. <filename>glibc-&glibc-version;/locale/broken_cur_max.c</filename>
  623. for more information</para>
  624. <indexterm zone="ch-system-glibc libBrokenLocale">
  625. <primary sortas="c-libBrokenLocale">libBrokenLocale</primary>
  626. </indexterm>
  627. </listitem>
  628. </varlistentry>
  629. <varlistentry id="libSegFault">
  630. <term><filename class="libraryfile">libSegFault</filename></term>
  631. <listitem>
  632. <para>The segmentation fault signal handler, used by
  633. <command>catchsegv</command></para>
  634. <indexterm zone="ch-system-glibc libSegFault">
  635. <primary sortas="c-libSegFault">libSegFault</primary>
  636. </indexterm>
  637. </listitem>
  638. </varlistentry>
  639. <varlistentry id="libanl">
  640. <term><filename class="libraryfile">libanl</filename></term>
  641. <listitem>
  642. <para>An asynchronous name lookup library</para>
  643. <indexterm zone="ch-system-glibc libanl">
  644. <primary sortas="c-libanl">libanl</primary>
  645. </indexterm>
  646. </listitem>
  647. </varlistentry>
  648. <varlistentry id="libc">
  649. <term><filename class="libraryfile">libc</filename></term>
  650. <listitem>
  651. <para>The main C library</para>
  652. <indexterm zone="ch-system-glibc libc">
  653. <primary sortas="c-libc">libc</primary>
  654. </indexterm>
  655. </listitem>
  656. </varlistentry>
  657. <varlistentry id="libcidn">
  658. <term><filename class="libraryfile">libcidn</filename></term>
  659. <listitem>
  660. <para>Used internally by Glibc for handling internationalized domain
  661. names in the <function>getaddrinfo()</function> function</para>
  662. <indexterm zone="ch-system-glibc libcidn">
  663. <primary sortas="c-libcidn">libcidn</primary>
  664. </indexterm>
  665. </listitem>
  666. </varlistentry>
  667. <varlistentry id="libcrypt">
  668. <term><filename class="libraryfile">libcrypt</filename></term>
  669. <listitem>
  670. <para>The cryptography library</para>
  671. <indexterm zone="ch-system-glibc libcrypt">
  672. <primary sortas="c-libcrypt">libcrypt</primary>
  673. </indexterm>
  674. </listitem>
  675. </varlistentry>
  676. <varlistentry id="libdl">
  677. <term><filename class="libraryfile">libdl</filename></term>
  678. <listitem>
  679. <para>The dynamic linking interface library</para>
  680. <indexterm zone="ch-system-glibc libdl">
  681. <primary sortas="c-libdl">libdl</primary>
  682. </indexterm>
  683. </listitem>
  684. </varlistentry>
  685. <varlistentry id="libg">
  686. <term><filename class="libraryfile">libg</filename></term>
  687. <listitem>
  688. <para>Dummy library containing no functions. Previously was a runtime
  689. library for <command>g++</command></para>
  690. <indexterm zone="ch-system-glibc libg">
  691. <primary sortas="c-libg">libg</primary>
  692. </indexterm>
  693. </listitem>
  694. </varlistentry>
  695. <varlistentry id="libieee">
  696. <term><filename class="libraryfile">libieee</filename></term>
  697. <listitem>
  698. <para>Linking in this module forces error handling rules for math
  699. functions as defined by the Institute of Electrical and Electronic
  700. Engineers (IEEE). The default is POSIX.1 error handling</para>
  701. <indexterm zone="ch-system-glibc libieee">
  702. <primary sortas="c-libieee">libieee</primary>
  703. </indexterm>
  704. </listitem>
  705. </varlistentry>
  706. <varlistentry id="libm">
  707. <term><filename class="libraryfile">libm</filename></term>
  708. <listitem>
  709. <para>The mathematical library</para>
  710. <indexterm zone="ch-system-glibc libm">
  711. <primary sortas="c-libm">libm</primary>
  712. </indexterm>
  713. </listitem>
  714. </varlistentry>
  715. <varlistentry id="libmcheck">
  716. <term><filename class="libraryfile">libmcheck</filename></term>
  717. <listitem>
  718. <para>Turns on memory allocation checking when linked to</para>
  719. <indexterm zone="ch-system-glibc libmcheck">
  720. <primary sortas="c-libmcheck">libmcheck</primary>
  721. </indexterm>
  722. </listitem>
  723. </varlistentry>
  724. <varlistentry id="libmemusage">
  725. <term><filename class="libraryfile">libmemusage</filename></term>
  726. <listitem>
  727. <para>Used by <command>memusage</command> to help collect
  728. information about the memory usage of a program</para>
  729. <indexterm zone="ch-system-glibc libmemusage">
  730. <primary sortas="c-libmemusage">libmemusage</primary>
  731. </indexterm>
  732. </listitem>
  733. </varlistentry>
  734. <varlistentry id="libnsl">
  735. <term><filename class="libraryfile">libnsl</filename></term>
  736. <listitem>
  737. <para>The network services library</para>
  738. <indexterm zone="ch-system-glibc libnsl">
  739. <primary sortas="c-libnsl">libnsl</primary>
  740. </indexterm>
  741. </listitem>
  742. </varlistentry>
  743. <varlistentry id="libnss">
  744. <term><filename class="libraryfile">libnss</filename></term>
  745. <listitem>
  746. <para>The Name Service Switch libraries, containing functions for
  747. resolving host names, user names, group names, aliases, services,
  748. protocols, etc.</para>
  749. <indexterm zone="ch-system-glibc libnss">
  750. <primary sortas="c-libnss">libnss</primary>
  751. </indexterm>
  752. </listitem>
  753. </varlistentry>
  754. <varlistentry id="libpthread">
  755. <term><filename class="libraryfile">libpthread</filename></term>
  756. <listitem>
  757. <para>The POSIX threads library</para>
  758. <indexterm zone="ch-system-glibc libpthread">
  759. <primary sortas="c-libpthread">libpthread</primary>
  760. </indexterm>
  761. </listitem>
  762. </varlistentry>
  763. <varlistentry id="libresolv">
  764. <term><filename class="libraryfile">libresolv</filename></term>
  765. <listitem>
  766. <para>Contains functions for creating, sending, and interpreting
  767. packets to the Internet domain name servers</para>
  768. <indexterm zone="ch-system-glibc libresolv">
  769. <primary sortas="c-libresolv">libresolv</primary>
  770. </indexterm>
  771. </listitem>
  772. </varlistentry>
  773. <varlistentry id="librpcsvc">
  774. <term><filename class="libraryfile">librpcsvc</filename></term>
  775. <listitem>
  776. <para>Contains functions providing miscellaneous RPC services</para>
  777. <indexterm zone="ch-system-glibc librpcsvc">
  778. <primary sortas="c-librpcsvc">librpcsvc</primary>
  779. </indexterm>
  780. </listitem>
  781. </varlistentry>
  782. <varlistentry id="librt">
  783. <term><filename class="libraryfile">librt</filename></term>
  784. <listitem>
  785. <para>Contains functions providing most of the interfaces specified
  786. by the POSIX.1b Realtime Extension</para>
  787. <indexterm zone="ch-system-glibc librt">
  788. <primary sortas="c-librt">librt</primary>
  789. </indexterm>
  790. </listitem>
  791. </varlistentry>
  792. <varlistentry id="libthread_db">
  793. <term><filename class="libraryfile">libthread_db</filename></term>
  794. <listitem>
  795. <para>Contains functions useful for building debuggers for
  796. multi-threaded programs</para>
  797. <indexterm zone="ch-system-glibc libthread_db">
  798. <primary sortas="c-libthread_db">libthread_db</primary>
  799. </indexterm>
  800. </listitem>
  801. </varlistentry>
  802. <varlistentry id="libutil">
  803. <term><filename class="libraryfile">libutil</filename></term>
  804. <listitem>
  805. <para>Contains code for <quote>standard</quote> functions used in
  806. many different Unix utilities</para>
  807. <indexterm zone="ch-system-glibc libutil">
  808. <primary sortas="c-libutil">libutil</primary>
  809. </indexterm>
  810. </listitem>
  811. </varlistentry>
  812. </variablelist>
  813. </sect2>
  814. </sect1>