source: chapter06/glibc.xml@ 8f1042af

6.1 6.1.1
Last change on this file since 8f1042af was 8f1042af, checked in by Matthew Burgess <matthew@…>, 19 years ago

Merging of various wording changes from r6215-r6217

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

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