source: chapter06/glibc.xml@ 1dc34de7

6.0
Last change on this file since 1dc34de7 was ef13657, checked in by Gerard Beekmans <gerard@…>, 20 years ago

Completed global edits for upcoming 6.0 release

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/testing/BOOK@4000 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

  • Property mode set to 100644
File size: 25.2 KB
RevLine 
[673b0d8]1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
3 <!ENTITY % general-entities SYSTEM "../general.ent">
4 %general-entities;
5]>
[a001133]6<sect1 id="ch-system-glibc" xreflabel="Glibc" role="wrap">
[673b0d8]7<title>Glibc-&glibc-version;</title>
8<?dbhtml filename="glibc.html"?>
9
10<indexterm zone="ch-system-glibc"><primary sortas="a-Glibc">Glibc</primary></indexterm>
[6370fa6]11
[a001133]12<sect2 role="package"><title/>
[5888299]13<para>The Glibc package contains the main C library. This library provides all
14the basic routines for allocating memory, searching directories, opening and
15closing files, reading and writing them, string handling, pattern matching,
16arithmetic, and so on.</para>
17
[a001133]18<segmentedlist>
19<segtitle>&buildtime;</segtitle>
20<segtitle>&diskspace;</segtitle>
21<seglistitem><seg>12.3 SBU</seg><seg>784 MB</seg></seglistitem>
22</segmentedlist>
[673b0d8]23
[a001133]24<segmentedlist>
25<segtitle>Glibc installation depends on</segtitle>
26<seglistitem><seg>Bash, Binutils, Coreutils, Diffutils,
27Gawk, GCC, Gettext, Grep, Make, Perl, Sed, Texinfo</seg></seglistitem>
28</segmentedlist>
29</sect2>
[3554fa3a]30
[a001133]31<sect2 role="installation">
[5888299]32<title>Installation of Glibc</title>
[73aedd1d]33
[ef13657]34<para>The Glibc build system is self-contained and will install
35perfectly, even though the compiler specs file and linker are still
36pointing at <filename class="directory">/tools</filename>. The specs
37and linker cannot be adjusted before the Glibc install because the
38Glibc autoconf tests would then give false results and defeat the goal
39of achieving a clean build.</para>
[73aedd1d]40
[ef13657]41<para>Before starting to build Glibc, remember to unset any
42environment variables that override the default optimization
43flags.</para>
[73aedd1d]44
45<para>The Glibc documentation recommends building Glibc outside of the source
46directory in a dedicated build directory:</para>
47
48<screen><userinput>mkdir ../glibc-build
49cd ../glibc-build</userinput></screen>
50
51<para>Now prepare Glibc for compilation:</para>
52
[9dfc02f]53<screen><userinput>../glibc-&glibc-version;/configure --prefix=/usr \
54 --disable-profile --enable-add-ons=nptl --with-tls \
[4fdb55e]55 --with-__thread --enable-kernel=2.6.0 --without-cvs \
[ef13657]56 --libexecdir=/usr/lib/glibc \
[9dfc02f]57 --with-headers=/tools/glibc-kernheaders</userinput></screen>
[73aedd1d]58
[ef13657]59<para>The meaning of the new configure option:</para>
60
61<variablelist>
62<varlistentry>
63<term><parameter>--libexecdir=/usr/lib/glibc</parameter></term>
64<listitem><para>This changes the location of the
65<command>pt_chown</command> program from its default of <filename
66class="directory">/usr/libexec</filename> to <filename
67class="directory">/usr/lib/glibc</filename>.</para></listitem>
68</varlistentry>
69</variablelist>
70
[73aedd1d]71<para>Compile the package:</para>
72
73<screen><userinput>make</userinput></screen>
74
[ef13657]75<important><para>In this section, the test suite for Glibc is
76considered critical. Do not skip it under any
[90afe40d]77circumstance.</para></important>
78
[73aedd1d]79<para>Test the results:</para>
80
81<screen><userinput>make check</userinput></screen>
82
[ef13657]83<para>The Glibc test suite is highly dependent on certain functions of
84the host system, in particular the kernel. In general, the Glibc test
85suite is always expected to pass. However, in certain circumstances,
86some failures are unavoidable. This is a list of the most common
87issues:</para>
[d878ce3]88
89<itemizedlist>
90<listitem><para>The <emphasis>math</emphasis> tests sometimes fail when running
91on systems where the CPU is not a relatively new genuine Intel or authentic AMD.
92Certain optimization settings are also known to be a factor here.</para></listitem>
93
94<listitem><para>The <emphasis>gettext</emphasis> test sometimes fails due to
95host system issues. The exact reasons are not yet clear.</para></listitem>
96
[ef13657]97<listitem><para>The <emphasis>atime</emphasis> test sometimes fails
98when the LFS partition is mounted with the
99<parameter>noatime</parameter> option. This sometimes occurs because
100of other file system quirks as well.</para></listitem>
101
102<listitem><para>The <emphasis>shm</emphasis> test can fail when the
103host system is using the <systemitem
104class="filesystem">devfs</systemitem> file system but does not have
105the <systemitem class="filesystem">tmpfs</systemitem> file system
106mounted at <filename class="directory">/dev/shm</filename>. This
107occurs because of a lack of support for tmpfs in the
108kernel.</para></listitem>
109
110<listitem><para>When running on older and slower hardware, some tests
111can fail because of test timeouts being exceeded.</para></listitem>
[d878ce3]112</itemizedlist>
[73aedd1d]113
[1caa48e]114<para>Though it is a harmless message, the install stage of Glibc will
[ef13657]115complain about the absence of <filename>/etc/ld.so.conf</filename>.
116Prevent this warning with:</para>
[1caa48e]117
118<screen><userinput>touch /etc/ld.so.conf</userinput></screen>
119
[ef13657]120<para>Install the package:</para>
[73aedd1d]121
122<screen><userinput>make install</userinput></screen>
123
[ef13657]124<para>The locales that can make the system respond in a different
125language were not installed by the above command. Install this
126with:</para>
[73aedd1d]127
128<screen><userinput>make localedata/install-locales</userinput></screen>
129
[ef13657]130<para>To save yourself a lot of time, an alternative to running the
131previous command (which generates and installs every locale Glibc is
132aware of) is to install only those locales that are wanted and needed.
133This can be achieved by using the <command>localedef</command>
134command. Information on this command is located in the
135<filename>INSTALL</filename> file in the Glibc source. However, there
136are a number of locales that are essential in order for the tests of
137future packages to pass, in particular, the
138<emphasis>libstdc++</emphasis> tests from GCC. The following
139instructions, instead of the <emphasis>install-locales</emphasis>
140target used above, will install the minimum set of locales necessary
141for the tests to run successfully:</para>
[73aedd1d]142
143<screen><userinput>mkdir -p /usr/lib/locale
144localedef -i de_DE -f ISO-8859-1 de_DE
145localedef -i de_DE@euro -f ISO-8859-15 de_DE@euro
146localedef -i en_HK -f ISO-8859-1 en_HK
147localedef -i en_PH -f ISO-8859-1 en_PH
148localedef -i en_US -f ISO-8859-1 en_US
149localedef -i es_MX -f ISO-8859-1 es_MX
[673b0d8]150localedef -i fa_IR -f UTF-8 fa_IR
[73aedd1d]151localedef -i fr_FR -f ISO-8859-1 fr_FR
152localedef -i fr_FR@euro -f ISO-8859-15 fr_FR@euro
153localedef -i it_IT -f ISO-8859-1 it_IT
154localedef -i ja_JP -f EUC-JP ja_JP</userinput></screen>
155
[ef13657]156<para>Some locales installed by the <command>make
157localedata/install-locales</command> command above are not properly
158supported by some applications that are in the LFS and BLFS books.
159Because of the various problems that arise due to application
160programmers making assumptions that break in such locales, LFS should
161not be used in locales that utilize multibyte character sets
162(including UTF-8) or right-to-left writing order. Numerous unofficial
163and unstable patches are required to fix these problems, and it has
164been decided not to support such complex locales. This applies to the
165ja_JP and fa_IR locales as well -- they have been installed only for
166GCC and Gettext tests to pass and the <command>watch</command> program
167(part of the Procps package) does not work properly in them. Various
168attempts to circumvent these restrictions are documented in
169internationalization-related hints.</para>
170
171<para>Build the linuxthreads man pages, which are a great reference
[9dfc02f]172on the threading API (applicable to NPTL as well):</para>
[73aedd1d]173
[9dfc02f]174<screen><userinput>make -C ../glibc-&glibc-version;/linuxthreads/man</userinput></screen>
[73aedd1d]175
[ef13657]176<para>Install these pages:</para>
[73aedd1d]177
[9dfc02f]178<screen><userinput>make -C ../glibc-&glibc-version;/linuxthreads/man install</userinput></screen>
[73aedd1d]179
180</sect2>
[5888299]181
[8c16bf7]182<sect2 id="conf-glibc" role="configuration"><title>Configuring Glibc</title>
[673b0d8]183<indexterm zone="conf-glibc"><primary sortas="e-/etc/nsswitch.conf">/etc/nsswitch.conf</primary></indexterm>
184<indexterm zone="conf-glibc"><primary sortas="e-/etc/localtime">/etc/localtime</primary></indexterm>
[342b176]185
[ef13657]186<para>The <filename>/etc/nsswitch.conf</filename> file needs to be
187created because, although Glibc provides defaults when this file is
188missing or corrupt, the Glibc defaults do not work well with
189networking. The time zone also needs to be set up.</para>
[342b176]190
191<para>Create a new file <filename>/etc/nsswitch.conf</filename> by running the
192following:</para>
193
[bb55064]194<screen><userinput>cat &gt; /etc/nsswitch.conf &lt;&lt; "EOF"
[342b176]195# Begin /etc/nsswitch.conf
196
197passwd: files
198group: files
199shadow: files
200
201hosts: files dns
202networks: files
203
[4a80bec]204protocols: files
205services: files
206ethers: files
207rpc: files
[342b176]208
209# End /etc/nsswitch.conf
[bb55064]210EOF</userinput></screen>
[342b176]211
212<para>To find out what time zone you're in, run the following script:</para>
213
214<screen><userinput>tzselect</userinput></screen>
215
[ef13657]216<para>After answering a few questions about the location, the script
217will output the name of the time zone (e.g.,
218<emphasis>EST5EDT</emphasis> or <emphasis>Canada/Eastern</emphasis>).
219Then create the <filename>/etc/localtime</filename> file by
220running:</para>
[342b176]221
[ef13657]222<screen><userinput>cp --remove-destination /usr/share/zoneinfo/<replaceable>[xxx]</replaceable> /etc/localtime</userinput></screen>
[342b176]223
[ef13657]224<para>Replace [xxx] with the name of the time zone that the
225<command>tzselect</command> provided (e.g., Canada/Eastern).</para>
226
227<para>The meaning of the cp option:</para>
[342b176]228
[b8a819f]229<variablelist>
230<varlistentry>
[bb55064]231<term><parameter>--remove-destination</parameter></term>
[ef13657]232<listitem><para>This is needed to force removal of the already
233existing symbolic link. The reason for copying the file instead of
234using a symlink is to cover the situation where <filename
235class="directory">/usr</filename> is on a separate partition. This
236could be important when booted into single user
237mode.</para></listitem>
[b8a819f]238</varlistentry>
239</variablelist>
[342b176]240
241</sect2>
242
243
[8c16bf7]244<sect2 id="conf-ld" role="configuration">
[342b176]245<title>Configuring Dynamic Loader</title>
[673b0d8]246<indexterm zone="conf-ld"><primary sortas="e-/etc/ld.so.conf">/etc/ld.so.conf</primary></indexterm>
[342b176]247
[ef13657]248<para>By default, the dynamic loader (<filename
249class="libraryfile">/lib/ld-linux.so.2</filename>) searches through
250<filename class="directory">/lib</filename> and <filename
251class="directory">/usr/lib</filename> for dynamic libraries that are
252needed by programs as they are run. However, if there are libraries in
[342b176]253directories other than <filename class="directory">/lib</filename> and
[ef13657]254<filename class="directory">/usr/lib</filename>, these need to be
255added them to the <filename>/etc/ld.so.conf</filename> file in order
256for the dynamic loader to find them. Two directories that are commonly
257known to contain additional libraries are <filename
258class="directory">/usr/local/lib</filename> and <filename
259class="directory">/opt/lib</filename>, so add those directories to the
[342b176]260dynamic loader's search path.</para>
261
262<para>Create a new file <filename>/etc/ld.so.conf</filename> by running the
263following:</para>
264
[bb55064]265<screen><userinput>cat &gt; /etc/ld.so.conf &lt;&lt; "EOF"
[342b176]266# Begin /etc/ld.so.conf
267
268/usr/local/lib
269/opt/lib
270
271# End /etc/ld.so.conf
[bb55064]272EOF</userinput></screen>
[342b176]273
274</sect2>
[5888299]275
276
[c6cb3aa]277<sect2 id="contents-glibc" role="content"><title>Contents of Glibc</title>
[673b0d8]278
[c6cb3aa]279<segmentedlist>
280<segtitle>Installed programs</segtitle>
281<segtitle>Installed libraries</segtitle>
282<seglistitem><seg>catchsegv, gencat, getconf,
[673b0d8]283getent, glibcbug, iconv, iconvconfig, ldconfig, ldd, lddlibc4, locale,
284localedef, mtrace, nscd, nscd_nischeck, pcprofiledump, pt_chown, rpcgen,
[c6cb3aa]285rpcinfo, sln, sprof, tzselect, xtrace, zdump and zic</seg>
286<seg>ld.so, libBrokenLocale.[a,so],
[673b0d8]287libSegFault.so, libanl.[a,so], libbsd-compat.a, libc.[a,so], libc_nonshared.a,
288libcrypt.[a,so], libdl.[a,so], libg.a, libieee.a, libm.[a,so], libmcheck.a,
289libmemusage.so, libnsl.a, libnss_compat.so, libnss_dns.so, libnss_files.so,
290libnss_hesiod.so, libnss_nis.so, libnss_nisplus.so, libpcprofile.so,
291libpthread.[a,so], libresolv.[a,so], librpcsvc.a, librt.[a,so], libthread_db.so
[c6cb3aa]292and libutil.[a,so]</seg></seglistitem>
293</segmentedlist>
[673b0d8]294
[c6cb3aa]295<variablelist><title>Short descriptions</title>
[673b0d8]296
[b8a819f]297<varlistentry id="catchsegv">
298<term><command>catchsegv</command></term>
[c6cb3aa]299<listitem>
[673b0d8]300<indexterm zone="ch-system-glibc catchsegv"><primary sortas="b-catchsegv">catchsegv</primary></indexterm>
[ef13657]301<para>can be used to create a stack trace when a program
302terminates with a segmentation fault.</para>
[c6cb3aa]303</listitem>
304</varlistentry>
[673b0d8]305
[b8a819f]306<varlistentry id="gencat">
307<term><command>gencat</command></term>
[c6cb3aa]308<listitem>
[673b0d8]309<indexterm zone="ch-system-glibc gencat"><primary sortas="b-gencat">gencat</primary></indexterm>
[c6cb3aa]310<para>generates message catalogues.</para>
311</listitem>
312</varlistentry>
[673b0d8]313
[b8a819f]314<varlistentry id="getconf">
315<term><command>getconf</command></term>
[c6cb3aa]316<listitem>
[673b0d8]317<indexterm zone="ch-system-glibc getconf"><primary sortas="b-getconf">getconf</primary></indexterm>
[c6cb3aa]318<para>displays the system configuration values for file system specific variables.</para>
319</listitem>
320</varlistentry>
[673b0d8]321
[b8a819f]322<varlistentry id="getent">
323<term><command>getent</command></term>
[c6cb3aa]324<listitem>
[673b0d8]325<indexterm zone="ch-system-glibc getent"><primary sortas="b-getent">getent</primary></indexterm>
[c6cb3aa]326<para>gets entries from an administrative database.</para>
327</listitem>
328</varlistentry>
[673b0d8]329
[b8a819f]330<varlistentry id="glibcbug">
331<term><command>glibcbug</command></term>
[c6cb3aa]332<listitem>
[673b0d8]333<indexterm zone="ch-system-glibc glibcbug"><primary sortas="b-glibcbug">glibcbug</primary></indexterm>
[c6cb3aa]334<para>creates a bug report and mails it to the bug email address.</para>
335</listitem>
336</varlistentry>
[673b0d8]337
[b8a819f]338<varlistentry id="iconv">
339<term><command>iconv</command></term>
[c6cb3aa]340<listitem>
[673b0d8]341<indexterm zone="ch-system-glibc iconv"><primary sortas="b-iconv">iconv</primary></indexterm>
[c6cb3aa]342<para>performs character set conversion.</para>
343</listitem>
344</varlistentry>
[673b0d8]345
[b8a819f]346<varlistentry id="iconvconfig">
347<term><command>iconvconfig</command></term>
[c6cb3aa]348<listitem>
[673b0d8]349<indexterm zone="ch-system-glibc iconvconfig"><primary sortas="b-iconvconfig">iconvconfig</primary></indexterm>
[ef13657]350<para>creates fastloading <command>iconv</command> module configuration files.</para>
[c6cb3aa]351</listitem>
352</varlistentry>
[673b0d8]353
[b8a819f]354<varlistentry id="ldconfig">
355<term><command>ldconfig</command></term>
[c6cb3aa]356<listitem>
[673b0d8]357<indexterm zone="ch-system-glibc ldconfig"><primary sortas="b-ldconfig">ldconfig</primary></indexterm>
[c6cb3aa]358<para>configures the dynamic linker runtime bindings.</para>
359</listitem>
360</varlistentry>
[673b0d8]361
[b8a819f]362<varlistentry id="ldd">
363<term><command>ldd</command></term>
[c6cb3aa]364<listitem>
[673b0d8]365<indexterm zone="ch-system-glibc ldd"><primary sortas="b-ldd">ldd</primary></indexterm>
[c6cb3aa]366<para>reports which shared libraries are required
[673b0d8]367by each given program or shared library.</para>
[c6cb3aa]368</listitem>
369</varlistentry>
[673b0d8]370
[b8a819f]371<varlistentry id="lddlibc4">
372<term><command>lddlibc4</command></term>
[c6cb3aa]373<listitem>
[673b0d8]374<indexterm zone="ch-system-glibc lddlibc4"><primary sortas="b-lddlibc4">lddlibc4</primary></indexterm>
[bb55064]375<para>assists <command>ldd</command> with object files.</para>
[c6cb3aa]376</listitem>
377</varlistentry>
[673b0d8]378
[b8a819f]379<varlistentry id="locale">
380<term><command>locale</command></term>
[c6cb3aa]381<listitem>
[673b0d8]382<indexterm zone="ch-system-glibc locale"><primary sortas="b-locale">locale</primary></indexterm>
[ef13657]383<para>a Perl program that tells the compiler
[673b0d8]384to enable or disable the use of POSIX locales for built-in operations.</para>
[c6cb3aa]385</listitem>
386</varlistentry>
[673b0d8]387
[b8a819f]388<varlistentry id="localedef">
389<term><command>localedef</command></term>
[c6cb3aa]390<listitem>
[673b0d8]391<indexterm zone="ch-system-glibc localedef"><primary sortas="b-localedef">localedef</primary></indexterm>
[c6cb3aa]392<para>compiles locale specifications.</para>
393</listitem>
394</varlistentry>
[673b0d8]395
[b8a819f]396<varlistentry id="mtrace">
397<term><command>mtrace</command></term>
[c6cb3aa]398<listitem>
[673b0d8]399<indexterm zone="ch-system-glibc mtrace"><primary sortas="b-mtrace">mtrace</primary></indexterm>
[ef13657]400<para>a program that reads and interprets a memory trace file and
401ouputs a summary in human-readable format.</para>
[c6cb3aa]402</listitem>
403</varlistentry>
[673b0d8]404
[b8a819f]405<varlistentry id="nscd">
406<term><command>nscd</command></term>
[c6cb3aa]407<listitem>
[673b0d8]408<indexterm zone="ch-system-glibc nscd"><primary sortas="b-nscd">nscd</primary></indexterm>
[ef13657]409<para>a daemon that provides a cache for the most common name
410service requests.</para>
[c6cb3aa]411</listitem>
412</varlistentry>
[673b0d8]413
[b8a819f]414<varlistentry id="nscd_nischeck">
415<term><command>nscd_nischeck</command></term>
[c6cb3aa]416<listitem>
[673b0d8]417<indexterm zone="ch-system-glibc nscd_nischeck"><primary sortas="b-nscd_nischeck">nscd_nischeck</primary></indexterm>
[c6cb3aa]418<para>checks whether or not secure mode is necessary for NIS+ lookup.</para>
419</listitem>
420</varlistentry>
[673b0d8]421
[b8a819f]422<varlistentry id="pcprofiledump">
423<term><command>pcprofiledump</command></term>
[c6cb3aa]424<listitem>
[673b0d8]425<indexterm zone="ch-system-glibc pcprofiledump"><primary sortas="b-pcprofiledump">pcprofiledump</primary></indexterm>
[c6cb3aa]426<para>dumps information generated by PC profiling.</para>
427</listitem>
428</varlistentry>
[673b0d8]429
[b8a819f]430<varlistentry id="pt_chown">
431<term><command>pt_chown</command></term>
[c6cb3aa]432<listitem>
[673b0d8]433<indexterm zone="ch-system-glibc pt_chown"><primary sortas="b-pt_chown">pt_chown</primary></indexterm>
[ef13657]434<para>is a helper program for <command>grantpt</command> to set
[673b0d8]435the owner, group and access permissions of a slave pseudo terminal.</para>
[c6cb3aa]436</listitem>
437</varlistentry>
[673b0d8]438
[b8a819f]439<varlistentry id="rpcgen">
440<term><command>rpcgen</command></term>
[c6cb3aa]441<listitem>
[673b0d8]442<indexterm zone="ch-system-glibc rpcgen"><primary sortas="b-rpcgen">rpcgen</primary></indexterm>
[ef13657]443<para>generates C code to implement the Remote Procecure call (RPC) protocol.</para>
[c6cb3aa]444</listitem>
445</varlistentry>
[673b0d8]446
[b8a819f]447<varlistentry id="rpcinfo">
448<term><command>rpcinfo</command></term>
[c6cb3aa]449<listitem>
[673b0d8]450<indexterm zone="ch-system-glibc rpcinfo"><primary sortas="b-rpcinfo">rpcinfo</primary></indexterm>
[c6cb3aa]451<para>makes an RPC call to an RPC server.</para>
452</listitem>
453</varlistentry>
[673b0d8]454
[b8a819f]455<varlistentry id="sln">
456<term><command>sln</command></term>
[c6cb3aa]457<listitem>
[673b0d8]458<indexterm zone="ch-system-glibc sln"><primary sortas="b-sln">sln</primary></indexterm>
[ef13657]459<para>a statically linked <command>ln</command> program.</para>
[c6cb3aa]460</listitem>
461</varlistentry>
[673b0d8]462
[b8a819f]463<varlistentry id="sprof">
464<term><command>sprof</command></term>
[c6cb3aa]465<listitem>
[673b0d8]466<indexterm zone="ch-system-glibc sprof"><primary sortas="b-sprof">sprof</primary></indexterm>
[c6cb3aa]467<para>reads and displays shared object profiling data.</para>
468</listitem>
469</varlistentry>
[4931dd3]470
[b8a819f]471<varlistentry id="tzselect">
472<term><command>tzselect</command></term>
[c6cb3aa]473<listitem>
[673b0d8]474<indexterm zone="ch-system-glibc tzselect"><primary sortas="b-tzselect">tzselect</primary></indexterm>
[c6cb3aa]475<para>asks the user about the location of the
[673b0d8]476system and reports the corresponding time zone description.</para>
[c6cb3aa]477</listitem>
478</varlistentry>
[673b0d8]479
[b8a819f]480<varlistentry id="xtrace">
481<term><command>xtrace</command></term>
[c6cb3aa]482<listitem>
[673b0d8]483<indexterm zone="ch-system-glibc xtrace"><primary sortas="b-xtrace">xtrace</primary></indexterm>
[c6cb3aa]484<para>traces the execution of a program by
[673b0d8]485printing the currently executed function.</para>
[c6cb3aa]486</listitem>
487</varlistentry>
[673b0d8]488
[b8a819f]489<varlistentry id="zdump">
490<term><command>zdump</command></term>
[c6cb3aa]491<listitem>
[673b0d8]492<indexterm zone="ch-system-glibc zdump"><primary sortas="b-zdump">zdump</primary></indexterm>
[ef13657]493<para>the time zone dumper.</para>
[c6cb3aa]494</listitem>
495</varlistentry>
[673b0d8]496
[b8a819f]497<varlistentry id="zic">
498<term><command>zic</command></term>
[c6cb3aa]499<listitem>
[673b0d8]500<indexterm zone="ch-system-glibc zic"><primary sortas="b-zic">zic</primary></indexterm>
[ef13657]501<para>the time zone compiler.</para>
[c6cb3aa]502</listitem>
503</varlistentry>
[673b0d8]504
[b8a819f]505<varlistentry id="ld.so">
[bb55064]506<term><filename class="libraryfile">ld.so</filename></term>
[c6cb3aa]507<listitem>
[673b0d8]508<indexterm zone="ch-system-glibc ld.so"><primary sortas="c-ld.so">ld.so</primary></indexterm>
[ef13657]509<para>the helper program for shared library executables.</para>
[c6cb3aa]510</listitem>
511</varlistentry>
[673b0d8]512
[b8a819f]513<varlistentry id="libBrokenLocale">
[bb55064]514<term><filename class="libraryfile">libBrokenLocale</filename></term>
[c6cb3aa]515<listitem>
[673b0d8]516<indexterm zone="ch-system-glibc libBrokenLocale"><primary sortas="c-libBrokenLocale">libBrokenLocale</primary></indexterm>
[ef13657]517<para>used by programs, such as Mozilla, to solve broken locales.</para>
[c6cb3aa]518</listitem>
519</varlistentry>
[673b0d8]520
[b8a819f]521<varlistentry id="libSegFault">
[bb55064]522<term><filename class="libraryfile">libSegFault</filename></term>
[c6cb3aa]523<listitem>
[673b0d8]524<indexterm zone="ch-system-glibc libSegFault"><primary sortas="c-libSegFault">libSegFault</primary></indexterm>
[ef13657]525<para>the segmentation fault signal handler.</para>
[c6cb3aa]526</listitem>
527</varlistentry>
[673b0d8]528
[b8a819f]529<varlistentry id="libanl">
[bb55064]530<term><filename class="libraryfile">libanl</filename></term>
[c6cb3aa]531<listitem>
[673b0d8]532<indexterm zone="ch-system-glibc libanl"><primary sortas="c-libanl">libanl</primary></indexterm>
[ef13657]533<para>an asynchronous name lookup library.</para>
[c6cb3aa]534</listitem>
535</varlistentry>
[673b0d8]536
[b8a819f]537<varlistentry id="libbsd-compat">
[bb55064]538<term><filename class="libraryfile">libbsd-compat</filename></term>
[c6cb3aa]539<listitem>
[673b0d8]540<indexterm zone="ch-system-glibc libbsd-compat"><primary sortas="c-libbsd-compat">libbsd-compat</primary></indexterm>
[c6cb3aa]541<para>provides the portability needed
[673b0d8]542in order to run certain BSD programs under Linux.</para>
[c6cb3aa]543</listitem>
544</varlistentry>
[673b0d8]545
[b8a819f]546<varlistentry id="libc">
[bb55064]547<term><filename class="libraryfile">libc</filename></term>
[c6cb3aa]548<listitem>
[673b0d8]549<indexterm zone="ch-system-glibc libc"><primary sortas="c-libc">libc</primary></indexterm>
[ef13657]550<para>the main C library.</para>
[c6cb3aa]551</listitem>
552</varlistentry>
[673b0d8]553
[b8a819f]554<varlistentry id="libcrypt">
[bb55064]555<term><filename class="libraryfile">libcrypt</filename></term>
[c6cb3aa]556<listitem>
[673b0d8]557<indexterm zone="ch-system-glibc libcrypt"><primary sortas="c-libcrypt">libcrypt</primary></indexterm>
[ef13657]558<para>the cryptography library.</para>
[c6cb3aa]559</listitem>
560</varlistentry>
[673b0d8]561
[b8a819f]562<varlistentry id="libdl">
[bb55064]563<term><filename class="libraryfile">libdl</filename></term>
[c6cb3aa]564<listitem>
[673b0d8]565<indexterm zone="ch-system-glibc libdl"><primary sortas="c-libdl">libdl</primary></indexterm>
[ef13657]566<para>the dynamic linking interface library.</para>
[c6cb3aa]567</listitem>
568</varlistentry>
[673b0d8]569
[b8a819f]570<varlistentry id="libg">
[bb55064]571<term><filename class="libraryfile">libg</filename></term>
[c6cb3aa]572<listitem>
[673b0d8]573<indexterm zone="ch-system-glibc libg"><primary sortas="c-libg">libg</primary></indexterm>
[ef13657]574<para>a runtime library for <command>g++</command>.</para>
[c6cb3aa]575</listitem>
576</varlistentry>
[673b0d8]577
[b8a819f]578<varlistentry id="libieee">
[bb55064]579<term><filename class="libraryfile">libieee</filename></term>
[c6cb3aa]580<listitem>
[673b0d8]581<indexterm zone="ch-system-glibc libieee"><primary sortas="c-libieee">libieee</primary></indexterm>
[ef13657]582<para>the Institute of Electrical and Electronic Engineers (IEEE) floating point library.</para>
[c6cb3aa]583</listitem>
584</varlistentry>
[673b0d8]585
[b8a819f]586<varlistentry id="libm">
[bb55064]587<term><filename class="libraryfile">libm</filename></term>
[c6cb3aa]588<listitem>
[673b0d8]589<indexterm zone="ch-system-glibc libm"><primary sortas="c-libm">libm</primary></indexterm>
[ef13657]590<para>the mathematical library.</para>
[c6cb3aa]591</listitem>
592</varlistentry>
[673b0d8]593
[b8a819f]594<varlistentry id="libmcheck">
[bb55064]595<term><filename class="libraryfile">libmcheck</filename></term>
[c6cb3aa]596<listitem>
[673b0d8]597<indexterm zone="ch-system-glibc libmcheck"><primary sortas="c-libmcheck">libmcheck</primary></indexterm>
[c6cb3aa]598<para>contains code run at boot.</para>
599</listitem>
600</varlistentry>
[673b0d8]601
[b8a819f]602<varlistentry id="libmemusage">
[bb55064]603<term><filename class="libraryfile">libmemusage</filename></term>
[c6cb3aa]604<listitem>
[673b0d8]605<indexterm zone="ch-system-glibc libmemusage"><primary sortas="c-libmemusage">libmemusage</primary></indexterm>
[ef13657]606<para>used by <command>memusage</command> to help collect
[673b0d8]607information about the memory usage of a program.</para>
[c6cb3aa]608</listitem>
609</varlistentry>
[673b0d8]610
[b8a819f]611<varlistentry id="libnsl">
[bb55064]612<term><filename class="libraryfile">libnsl</filename></term>
[c6cb3aa]613<listitem>
[673b0d8]614<indexterm zone="ch-system-glibc libnsl"><primary sortas="c-libnsl">libnsl</primary></indexterm>
[ef13657]615<para>the network services library.</para>
[c6cb3aa]616</listitem>
617</varlistentry>
[673b0d8]618
[b8a819f]619<varlistentry id="libnss">
[bb55064]620<term><filename class="libraryfile">libnss*</filename></term>
[c6cb3aa]621<listitem>
[673b0d8]622<indexterm zone="ch-system-glibc libnss"><primary sortas="c-libnss*">libnss*</primary></indexterm>
[ef13657]623<para>the Name Service Switch libraries,
[673b0d8]624containing functions for resolving host names, user names, group names,
[ef13657]625aliases, services, protocols, etc.</para>
[c6cb3aa]626</listitem>
627</varlistentry>
[673b0d8]628
[b8a819f]629<varlistentry id="libpcprofile">
[bb55064]630<term><filename class="libraryfile">libpcprofile</filename></term>
[c6cb3aa]631<listitem>
[673b0d8]632<indexterm zone="ch-system-glibc libpcprofile"><primary sortas="c-libpcprofile">libpcprofile</primary></indexterm>
[c6cb3aa]633<para>contains profiling functions used
[673b0d8]634to track the amount of CPU time spent in which source code lines.</para>
[c6cb3aa]635</listitem>
636</varlistentry>
[673b0d8]637
[b8a819f]638<varlistentry id="libpthread">
[bb55064]639<term><filename class="libraryfile">libpthread</filename></term>
[c6cb3aa]640<listitem>
[673b0d8]641<indexterm zone="ch-system-glibc libpthread"><primary sortas="c-libpthread">libpthread</primary></indexterm>
[c6cb3aa]642<para>is the POSIX threads library.</para>
643</listitem>
644</varlistentry>
[673b0d8]645
[b8a819f]646<varlistentry id="libresolv">
[bb55064]647<term><filename class="libraryfile">libresolv</filename></term>
[c6cb3aa]648<listitem>
[673b0d8]649<indexterm zone="ch-system-glibc libresolv"><primary sortas="c-libresolv">libresolv</primary></indexterm>
[c6cb3aa]650<para>contains functions for creating,
[673b0d8]651sending, and interpreting packets to the Internet domain name servers.</para>
[c6cb3aa]652</listitem>
653</varlistentry>
[673b0d8]654
[b8a819f]655<varlistentry id="librpcsvc">
[bb55064]656<term><filename class="libraryfile">librpcsvc</filename></term>
[c6cb3aa]657<listitem>
[673b0d8]658<indexterm zone="ch-system-glibc librpcsvc"><primary sortas="c-librpcsvc">librpcsvc</primary></indexterm>
[c6cb3aa]659<para>contains functions providing miscellaneous RPC services.</para>
660</listitem>
661</varlistentry>
[673b0d8]662
[b8a819f]663<varlistentry id="librt">
[bb55064]664<term><filename class="libraryfile">librt</filename></term>
[c6cb3aa]665<listitem>
[673b0d8]666<indexterm zone="ch-system-glibc librt"><primary sortas="c-librt">librt</primary></indexterm>
[c6cb3aa]667<para>contains functions providing most of the
[673b0d8]668interfaces specified by the POSIX.1b Realtime Extension.</para>
[c6cb3aa]669</listitem>
670</varlistentry>
[673b0d8]671
[b8a819f]672<varlistentry id="libthread_db">
[bb55064]673<term><filename class="libraryfile">libthread_db</filename></term>
[c6cb3aa]674<listitem>
[673b0d8]675<indexterm zone="ch-system-glibc libthread_db"><primary sortas="c-libthread_db">libthread_db</primary></indexterm>
[c6cb3aa]676<para>contains functions useful for
[673b0d8]677building debuggers for multi-threaded programs.</para>
[c6cb3aa]678</listitem>
679</varlistentry>
[673b0d8]680
[b8a819f]681<varlistentry id="libutil">
[bb55064]682<term><filename class="libraryfile">libutil</filename></term>
[c6cb3aa]683<listitem>
[673b0d8]684<indexterm zone="ch-system-glibc libutil"><primary sortas="c-libutil">libutil</primary></indexterm>
[bb55064]685<para>contains code for <quote>standard</quote> functions used in many different Unix utilities.</para>
[c6cb3aa]686</listitem>
687</varlistentry>
688</variablelist>
[673b0d8]689
690</sect2>
691
692</sect1>
[ef13657]693
Note: See TracBrowser for help on using the repository browser.