glibc.xml 34 KB

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