]> sourceware.org Git - glibc.git/blame - manual/install.texi
Update.
[glibc.git] / manual / install.texi
CommitLineData
3c20b9b6
UD
1@c This is for making the `INSTALL' file for the distribution.
2@c Makeinfo ignores it when processing the file from the include.
3@setfilename INSTALL
4
5@node Installation, Maintenance, Library Summary, Top
7a68c94a 6@c %MENU% How to install the GNU C library
3c20b9b6
UD
7@appendix Installing the GNU C Library
8
3c20b9b6
UD
9Before you do anything else, you should read the file @file{FAQ} found
10at the top level of the source tree. This file answers common questions
11and describes problems you may experience with compilation and
12installation. It is updated more frequently than this manual.
13
1792d4db
UD
14Features can be added to GNU Libc via @dfn{add-on} bundles. These are
15separate tarfiles which you unpack into the top level of the source
16tree. Then you give @code{configure} the @samp{--enable-add-ons} option
17to activate them, and they will be compiled into the library. As of the
11b34882
UD
182.2 release, one important component of glibc is distributed as
19``official'' add-ons: the linuxthreads add-on. Unless you are doing an
20unusual installation, you should get this.
1792d4db
UD
21
22Support for POSIX threads is maintained by someone else, so it's in a
23separate package. It is only available for Linux systems, but this will
24change in the future. Get it from the same place you got the main
25bundle; the file is @file{glibc-linuxthreads-@var{VERSION}.tar.gz}.
00c1176b
UD
26
27You will need recent versions of several GNU tools: definitely GCC and
fe959e1e 28GNU Make, and possibly others. @xref{Tools for Compilation}, below.
00c1176b
UD
29
30@menu
31* Configuring and compiling:: How to compile and test GNU libc.
085320f5 32* Running make install:: How to install it once you've got it compiled.
00c1176b
UD
33* Tools for Compilation:: You'll need these first.
34* Supported Configurations:: What it runs on, what it doesn't.
1792d4db 35* Linux:: Specific advice for Linux systems.
00c1176b
UD
36* Reporting Bugs:: So they'll get fixed.
37@end menu
38
39@node Configuring and compiling
40@appendixsec Configuring and compiling GNU Libc
1792d4db
UD
41@cindex configuring
42@cindex compiling
00c1176b 43
04b9968b
UD
44GNU libc can be compiled in the source directory, but we strongly advise to
45build it in a separate build directory. For example, if you have unpacked
11b34882 46the glibc sources in @file{/src/gnu/glibc-2.2.0}, create a directory
e8b1163e
AJ
47@file{/src/gnu/glibc-build} to put the object files in. This allows
48removing the whole build directory in case an error occurs, which is the
49safest way to get a fresh start and should always be done.
00c1176b
UD
50
51From your object directory, run the shell script @file{configure} found
52at the top level of the source tree. In the scenario above, you'd type
53
54@smallexample
11b34882 55$ ../glibc-2.2.0/configure @var{args...}
00c1176b
UD
56@end smallexample
57
f76d7052 58Please note that even if you're building in a separate build directory,
04b9968b 59the compilation needs to modify a few files in the source
f76d7052
UD
60directory, especially some files in the manual subdirectory.
61
00c1176b
UD
62@noindent
63@code{configure} takes many options, but you can get away with knowing
1792d4db 64only two: @samp{--prefix} and @samp{--enable-add-ons}. The
00c1176b 65@code{--prefix} option tells configure where you want glibc installed.
1792d4db
UD
66This defaults to @file{/usr/local}. The @samp{--enable-add-ons} option
67tells configure to use all the add-on bundles it finds in the source
68directory. Since important functionality is provided in add-ons, you
04b9968b 69should always specify this option.
00c1176b
UD
70
71It may also be useful to set the @var{CC} and @var{CFLAGS} variables in
72the environment when running @code{configure}. @var{CC} selects the C
73compiler that will be used, and @var{CFLAGS} sets optimization options
74for the compiler.
75
04b9968b 76The following list describes all of the available options for @code{configure}:
3c20b9b6
UD
77
78@table @samp
00c1176b
UD
79@item --prefix=@var{directory}
80Install machine-independent data files in subdirectories of
81@file{@var{directory}}. The default is to install in @file{/usr/local}.
82
83@item --exec-prefix=@var{directory}
84Install the library and other machine-dependent files in subdirectories
85of @file{@var{directory}}. The default is to the @samp{--prefix}
04b9968b 86directory if that option is specified, or @file{/usr/local} otherwise.
00c1176b
UD
87
88@item --with-headers=@var{directory}
89Look for kernel header files in @var{directory}, not
90@file{/usr/include}. Glibc needs information from the kernel's private
91header files. It will normally look in @file{/usr/include} for them,
04b9968b 92but if you specify this option, it will look in @var{DIRECTORY} instead.
00c1176b
UD
93
94This option is primarily of use on a system where the headers in
95@file{/usr/include} come from an older version of glibc. Conflicts can
96occasionally happen in this case. Note that Linux libc5 qualifies as an
97older version of glibc. You can also use this option if you want to
98compile glibc with a newer set of kernel headers than the ones found in
99@file{/usr/include}.
100
101@item --enable-add-ons[=@var{list}]
04b9968b 102Enable add-on packages in your source tree. If this option is specified
00c1176b
UD
103with no list, it enables all the add-on packages it finds. If you do
104not wish to use some add-on package that you have present in your source
105tree, give this option a list of the add-ons that you @emph{do} want
62075f0f 106used, like this: @samp{--enable-add-ons=linuxthreads}
00c1176b 107
3c20b9b6
UD
108@item --with-binutils=@var{directory}
109Use the binutils (assembler and linker) in @file{@var{directory}}, not
110the ones the C compiler would default to. You could use this option if
111the default binutils on your system cannot deal with all the constructs
04b9968b
UD
112in the GNU C library. In that case, @code{configure} will detect the problem and
113suppress these constructs, so that the library will still be usable, but
114functionality may be lost---for example, you can't build a shared libc
115with old binutils.
3c20b9b6 116
3c20b9b6 117@item --without-fp
3c20b9b6
UD
118Use this option if your computer lacks hardware floating-point support
119and your operating system does not emulate an FPU.
120
b5ca0fb0
UD
121@c disable static doesn't work currently
122@c @item --disable-static
123@c Don't build static libraries. Static libraries aren't that useful these
124@c days, but we recommend you build them in case you need them.
3c20b9b6 125
00c1176b 126@item --disable-shared
04b9968b 127Don't build shared libraries even if it is possible. Not all systems support
00c1176b 128shared libraries; you need ELF support and (currently) the GNU linker.
3c20b9b6 129
00c1176b
UD
130@item --disable-profile
131Don't build libraries with profiling information. You may want to use
132this option if you don't plan to do profiling.
f12944ec 133
00c1176b
UD
134@item --enable-omitfp
135Use maximum optimization for the normal (static and shared)
136libraries, and compile separate static libraries with debugging
137information and no optimisation. We recommend against this. The extra
138optimization doesn't gain you much, it may provoke compiler bugs, and
139you won't be able to trace bugs through the C library.
140
141@item --disable-versioning
142Don't compile the shared libraries with symbol version information.
04b9968b 143Doing this will make the resulting library incompatible with old
00c1176b
UD
144binaries, so it's not recommended.
145
146@item --enable-static-nss
147Compile static versions of the NSS (Name Service Switch) libraries.
148This is not recommended because it defeats the purpose of NSS; a program
149linked statically with the NSS libraries cannot be dynamically
150reconfigured to use a different name database.
151
00c1176b
UD
152@item --build=@var{build-system}
153@itemx --host=@var{host-system}
04b9968b 154These options are for cross-compiling. If you specify both options and
00c1176b
UD
155@var{build-system} is different from @var{host-system}, @code{configure}
156will prepare to cross-compile glibc from @var{build-system} to be used
157on @var{host-system}. You'll probably need the @samp{--with-headers}
158option too, and you may have to override @var{configure}'s selection of
159the compiler and/or binutils.
160
04b9968b
UD
161If you only specify @samp{--host}, configure will prepare for a native
162compile but use what you specify instead of guessing what your system is.
1792d4db
UD
163This is most useful to change the CPU submodel. For example, if
164configure guesses your machine as @code{i586-pc-linux-gnu} but you want
ad1b5f19
UD
165to compile a library for 386es, give @samp{--host=i386-pc-linux-gnu} or
166just @samp{--host=i386-linux} and add the appropriate compiler flags
167(@samp{-mcpu=i386} will do the trick) to @var{CFLAGS}.
1792d4db 168
04b9968b 169If you specify just @samp{--build}, configure will get confused.
3c20b9b6
UD
170@end table
171
00c1176b
UD
172To build the library and related programs, type @code{make}. This will
173produce a lot of output, some of which may look like errors from
174@code{make} but isn't. Look for error messages from @code{make}
175containing @samp{***}. Those indicate that something is really wrong.
176
177The compilation process takes several hours even on fast hardware.
178Expect at least two hours for the default configuration on i586 for
8fc1e2ca
UD
179Linux. For Hurd times are much longer. Except for EGCS 1.1 and GCC
1802.95 (and later versions of GCC), all supported versions of GCC have a
181problem which causes them to take several minutes to compile certain
182files in the iconvdata directory. Do not panic if the compiler appears
183to hang.
00c1176b
UD
184
185If you want to run a parallel make, you can't just give @code{make} the
186@samp{-j} option, because it won't be passed down to the sub-makes.
187Instead, edit the generated @file{Makefile} and uncomment the line
3c20b9b6
UD
188
189@smallexample
00c1176b 190# PARALLELMFLAGS = -j 4
3c20b9b6
UD
191@end smallexample
192
193@noindent
00c1176b 194You can change the @samp{4} to some other number as appropriate for
f76d7052 195your system. Instead of changing the @file{Makefile}, you could give
04b9968b 196this option directly to @code{make} and call it as, for example,
f76d7052 197@code{make PARALLELMFLAGS=-j4}. If you're building in the source
04b9968b
UD
198directory, you must use the latter approach since in this case no
199new @file{Makefile} is generated for you to change.
f12944ec 200
04b9968b
UD
201To build and run test programs which exercise some of the library
202facilities, type @code{make check}. If it does not complete
203successfully, do not use the built library, and report a bug after
204verifying that the problem is not already known. @xref{Reporting Bugs},
205for instructions on reporting bugs. Note that some of the tests assume
206they are not being run by @code{root}. We recommend you compile and
207test glibc as an unprivileged user.
3c20b9b6
UD
208
209To format the @cite{GNU C Library Reference Manual} for printing, type
210@w{@code{make dvi}}. You need a working @TeX{} installation to do this.
1792d4db
UD
211The distribution already includes the on-line formatted version of the
212manual, as Info files. You can regenerate those with @w{@code{make
213info}}, but it shouldn't be necessary.
214
2e8048e5
UD
215The library has a number of special-purpose configuration parameters
216which you can find in @file{Makeconfig}. These can be overwritten with
217the file @file{configparms}. To change them, create a
218@file{configparms} in your build directory and add values as appropriate
219for your system. The file is included and parsed by @code{make} and has
220to follow the conventions for makefiles.
221
222It is easy to configure the GNU C library for cross-compilation by
223setting a few variables in @file{configparms}. Set @code{CC} to the
224cross-compiler for the target you configured the library for; it is
225important to use this same @code{CC} value when running
226@code{configure}, like this: @samp{CC=@var{target}-gcc configure
227@var{target}}. Set @code{BUILD_CC} to the compiler to use for for
228programs run on the build system as part of compiling the library. You
229may need to set @code{AR} and @code{RANLIB} to cross-compiling versions
230of @code{ar} and @code{ranlib} if the native tools are not configured to
231work with object files for the target you configured for.
232
233
085320f5 234@node Running make install
1792d4db
UD
235@appendixsec Installing the C Library
236@cindex installing
3c20b9b6
UD
237
238To install the library and its header files, and the Info files of the
239manual, type @code{make install}. This will build things if necessary,
04b9968b
UD
240before installing them. However, you should still compile everything first.
241If you are installing glibc as your primary C library, we recommend that you
1792d4db
UD
242shut the system down to single-user mode first, and reboot afterward.
243This minimizes the risk of breaking things when the library changes out
244from underneath.
245
c559a3ca
UD
246If you're upgrading from Linux libc5 or some other C library, you need to
247replace the @file{/usr/include} with a fresh directory before installing it.
62075f0f 248The new @file{/usr/include} should contain the Linux headers, but nothing else.
c559a3ca
UD
249
250You must first build the library (@samp{make}), optionally check it
251(@samp{make check}), switch the include directories and then install
252(@samp{make install}). The steps must be done in this order. Not moving
253the directory before install will result in an unusable mixture of header
254files from both libraries, but configuring, building, and checking the
255library requires the ability to compile and run programs against the old
62075f0f 256library.
c559a3ca 257
1792d4db 258If you are upgrading from a previous installation of glibc 2.0 or 2.1,
62075f0f
UD
259@samp{make install} will do the entire job. You do not need to remove
260the old includes -- if you want to do so anyway you must then follow the
c559a3ca
UD
261order given above.
262
263You may also need to reconfigure GCC to work with the new library. The
264easiest way to do that is to figure out the compiler switches to make it
265work again (@samp{-Wl,--dynamic-linker=/lib/ld-linux.so.2} should work on
266Linux systems) and use them to recompile gcc. You can also edit the specs
267file (@file{/usr/lib/gcc-lib/@var{TARGET}/@var{VERSION}/specs}), but that
62075f0f 268is a bit of a black art.
1792d4db
UD
269
270You can install glibc somewhere other than where you configured it to go
271by setting the @code{install_root} variable on the command line for
272@samp{make install}. The value of this variable is prepended to all the
273paths for installation. This is useful when setting up a chroot
bef24895
UD
274environment or preparing a binary distribution. The directory should be
275specified with an absolute file name.
1792d4db 276
a0edd63e 277Glibc 2.2 includes a daemon called @code{nscd}, which you
1792d4db
UD
278may or may not want to run. @code{nscd} caches name service lookups; it
279can dramatically improve performance with NIS+, and may help with DNS as
a0edd63e 280well.
1792d4db
UD
281
282One auxiliary program, @file{/usr/libexec/pt_chown}, is installed setuid
283@code{root}. This program is invoked by the @code{grantpt} function; it
284sets the permissions on a pseudoterminal so it can be used by the
285calling process. This means programs like @code{xterm} and
286@code{screen} do not have to be setuid to get a pty. (There may be
440d13e2
UD
287other reasons why they need privileges.) If you are using a 2.1 or
288newer Linux kernel with the @code{devptsfs} or @code{devfs} filesystems
289providing pty slaves, you don't need this program; otherwise you do.
290The source for @file{pt_chown} is in @file{login/programs/pt_chown.c}.
3c20b9b6 291
d01d6319
UD
292After installation you might want to configure the timezone and locale
293installation of your system. The GNU C library comes with a locale
294database which gets configured with @code{localedef}. For example, to
295set up a German locale with name @code{de_DE}, simply issue the command
8fc1e2ca
UD
296@samp{localedef -i de_DE -f ISO-8859-1 de_DE}. To configure all locales
297that are supported by glibc, you can issue from your build directory the
d01d6319
UD
298command @samp{make localedata/install-locales}.
299
300To configure the locally used timezone, you can either set the @code{TZ}
301environment variable. The script @code{tzselect} helps you to select
302the right value. As an example for Germany, tzselect would tell you to
303use @samp{TZ='Europe/Berlin'}. For a system wide installation (the
8fc1e2ca 304given paths are for an installation with @samp{--prefix=/usr}), link the
d01d6319
UD
305timezone file which is in @file{/usr/share/zoneinfo} to the file
306@file{/etc/localtime}. For Germany, you might execute @samp{ln -s
307/usr/share/zoneinfo/Europe/Berlin /etc/localtime}.
308
00c1176b
UD
309@node Tools for Compilation
310@appendixsec Recommended Tools for Compilation
3c20b9b6
UD
311@cindex installation tools
312@cindex tools, for installing library
313
314We recommend installing the following GNU tools before attempting to
315build the GNU C library:
316
317@itemize @bullet
318@item
2bbc70d5 319GNU @code{make} 3.79 or newer
3c20b9b6
UD
320
321You need the latest version of GNU @code{make}. Modifying the GNU C
04b9968b 322Library to work with other @code{make} programs would be so difficult that we
3c20b9b6 323recommend you port GNU @code{make} instead. @strong{Really.} We
2bbc70d5
AJ
324recommend version GNU @code{make} version 3.79. All earlier
325versions have severe bugs or lack features.
3c20b9b6
UD
326
327@item
2e8048e5 328EGCS 1.1.1, 1.1 or 1.0.3, or GCC 2.8.1, 2.95 or newer
3c20b9b6 329
00c1176b 330The GNU C library can only be compiled with the GNU C compiler family.
91ea72b7
UD
331As of the 2.1 release, EGCS 1.0.3 or higher is required. GCC 2.8.1 can
332also be used (but see the FAQ for reasons why you might not want to).
2e8048e5 333Earlier versions simply are too buggy. As of this writing, GCC 2.95.2
8fc1e2ca 334is the compiler we advise to use.
91ea72b7
UD
335
336You can use whatever compiler you like to compile programs that use GNU
337libc, but be aware that both GCC 2.7 and 2.8 have bugs in their
b8f558b7 338floating-point support that may be triggered by the math library.
3c20b9b6 339
5713a71e
UD
340On Alpha machines you need at least EGCS 1.1.1. Earlier versions don't
341work reliably.
342
343For PPC you might need some patches even on top of the last EGCS version.
344See the FAQ.
345
3c20b9b6 346@item
b8f558b7 347GNU @code{binutils} 2.9.1, 2.9.1.0.16, or later 2.9.1.0.x release
00c1176b
UD
348
349You must use GNU binutils (as and ld) if you want to build a shared
350library. Even if you don't, we recommend you use them anyway. No one
351has tested compilation with non-GNU binutils in a long time.
3c20b9b6 352
00c1176b 353The quality of binutils releases has varied a bit recently. The bugs
b8f558b7
UD
354are in obscure features, but glibc uses quite a few of those. 2.9.1,
3552.9.1.0.16, and later 2.9.1.0.x releases are known to work. Versions
356after 2.8.1.0.23 may or may not work. Older versions definitely don't.
3572.9.1.0.16 or higher is required on some platforms, like PPC and Arm.
5713a71e
UD
358
359For PPC you might need some patches even on top of the last binutils
360version. See the FAQ.
3c20b9b6
UD
361
362@item
407dc7a0 363GNU @code{texinfo} 3.12f
3c20b9b6
UD
364
365To correctly translate and install the Texinfo documentation you need
366this version of the @code{texinfo} package. Earlier versions do not
367understand all the tags used in the document, and the installation
1792d4db 368mechanism for the info files is not present or works differently.
3c20b9b6
UD
369
370@item
00c1176b
UD
371GNU @code{awk} 3.0, or some other POSIX awk
372
373Awk is used in several places to generate files. The scripts should
1792d4db 374work with any POSIX-compliant awk implementation; @code{gawk} 3.0 and
00c1176b
UD
375@code{mawk} 1.3 are known to work.
376
377@item
378Perl 5
379
380Perl is not required, but it is used if present to test the
381installation. We may decide to use it elsewhere in the future.
3c20b9b6 382
d66732e0
UD
383@item
384GNU @code{sed} 3.02 or newer
385
386Sed is used in several places to generate files. Most scripts work with
387any version of @code{sed}. The known exception is the script
388@code{po2test.sed} in the @code{intl} subdirectory which is used to
389generate @code{msgs.h} for the testsuite. This script works correctly
390only with GNU @code{sed} 3.02. If you like to run the testsuite, you
391should definitly upgrade @code{sed}.
392
3c20b9b6
UD
393@end itemize
394
395@noindent
396If you change any of the @file{configure.in} files you will also need
397
398@itemize @bullet
399@item
b8f558b7 400GNU @code{autoconf} 2.12 or higher
3c20b9b6
UD
401@end itemize
402
403@noindent
404and if you change any of the message translation files you will need
405
406@itemize @bullet
407@item
2f2f52f7
UD
408GNU @code{gettext} 0.10.35 or later (version 0.10.35 is a alpha release
409and available via ftp from alpha.gnu.org/gnu)
3c20b9b6
UD
410@end itemize
411
412@noindent
413You may also need these packages if you upgrade your source tree using
414patches, although we try to avoid this.
415
3c20b9b6
UD
416@node Supported Configurations
417@appendixsec Supported Configurations
418@cindex configurations, all supported
419
420The GNU C Library currently supports configurations that match the
421following patterns:
422
423@smallexample
2bbc70d5 424alpha@var{*}-@var{*}-linux
9a821cf9 425arm-@var{*}-linux
00c1176b
UD
426arm-@var{*}-linuxaout
427arm-@var{*}-none
428i@var{x}86-@var{*}-gnu
429i@var{x}86-@var{*}-linux
2bbc70d5 430ia64-@var{*}-linux
00c1176b 431m68k-@var{*}-linux
2bbc70d5 432mips@var{*}-@var{*}-linux
00c1176b
UD
433powerpc-@var{*}-linux
434sparc-@var{*}-linux
435sparc64-@var{*}-linux
3c20b9b6
UD
436@end smallexample
437
438Former releases of this library (version 1.09.1 and perhaps earlier
439versions) used to run on the following configurations:
440
441@smallexample
442alpha-dec-osf1
00c1176b
UD
443alpha-@var{*}-linuxecoff
444i@var{x}86-@var{*}-bsd4.3
445i@var{x}86-@var{*}-isc2.2
446i@var{x}86-@var{*}-isc3.@var{n}
447i@var{x}86-@var{*}-sco3.2
448i@var{x}86-@var{*}-sco3.2v4
449i@var{x}86-@var{*}-sysv
450i@var{x}86-@var{*}-sysv4
3c20b9b6
UD
451i@var{x}86-force_cpu386-none
452i@var{x}86-sequent-bsd
453i960-nindy960-none
454m68k-hp-bsd4.3
455m68k-mvme135-none
456m68k-mvme136-none
457m68k-sony-newsos3
458m68k-sony-newsos4
459m68k-sun-sunos4.@var{n}
460mips-dec-ultrix4.@var{n}
461mips-sgi-irix4.@var{n}
462sparc-sun-solaris2.@var{n}
463sparc-sun-sunos4.@var{n}
464@end smallexample
465
466Since no one has volunteered to test and fix these configurations,
467they are not supported at the moment. They probably don't compile;
468they definitely don't work anymore. Porting the library is not hard.
469If you are interested in doing a port, please contact the glibc
470maintainers by sending electronic mail to @email{bug-glibc@@gnu.org}.
471
04b9968b
UD
472Valid cases of @samp{i@var{x}86} include @samp{i386}, @samp{i486},
473@samp{i586}, and @samp{i686}. All of those configurations produce a
ad1b5f19
UD
474library that can run on this processor and newer processors. The GCC
475compiler by default generates code that's optimized for the machine it's
476configured for and will use the instructions available on that machine.
477For example if your GCC is configured for @samp{i686}, gcc will optimize
478for @samp{i686} and might issue some @samp{i686} specific instructions.
479To generate code for other models, you have to configure for that model
480and give GCC the appropriate @samp{-march=} and @samp{-mcpu=} compiler
481switches via @var{CFLAGS}.
1792d4db
UD
482
483@node Linux
484@appendixsec Specific advice for Linux systems
485@cindex upgrading from libc5
486@cindex kernel header files
487
b8f558b7
UD
488If you are installing GNU libc on a Linux system, you need to have
489the header files from a 2.2 kernel around for reference. You do not
04b9968b 490need to use the 2.2 kernel, just have its headers where glibc can access
b8f558b7
UD
491at them. The easiest way to do this is to unpack it in a directory
492such as @file{/usr/src/linux-2.2.1}. In that directory, run
493@samp{make config} and accept all the defaults. Then run @samp{make
494include/linux/version.h}. Finally, configure glibc with the option
495@samp{--with-headers=/usr/src/linux-2.2.1/include}. Use the most recent
496kernel you can get your hands on.
497
498An alternate tactic is to unpack the 2.2 kernel and run @samp{make
499config} as above. Then rename or delete @file{/usr/include}, create
500a new @file{/usr/include}, and make the usual symbolic links of
501@file{/usr/include/linux} and @file{/usr/include/asm} into the 2.2
502kernel sources. You can then configure glibc with no special options.
503This tactic is recommended if you are upgrading from libc5, since you
504need to get rid of the old header files anyway.
1792d4db
UD
505
506Note that @file{/usr/include/net} and @file{/usr/include/scsi} should
507@strong{not} be symlinks into the kernel sources. GNU libc provides its
508own versions of these files.
509
510Linux expects some components of the libc installation to be in
511@file{/lib} and some in @file{/usr/lib}. This is handled automatically
512if you configure glibc with @samp{--prefix=/usr}. If you set some other
513prefix or allow it to default to @file{/usr/local}, then all the
514components are installed there.
515
516If you are upgrading from libc5, you need to recompile every shared
517library on your system against the new library for the sake of new code,
518but keep the old libraries around for old binaries to use. This is
519complicated and difficult. Consult the Glibc2 HOWTO at
520@url{http://www.imaxx.net/~thrytis/glibc} for details.
521
522You cannot use @code{nscd} with 2.0 kernels, due to bugs in the
523kernel-side thread support. @code{nscd} happens to hit these bugs
524particularly hard, but you might have problems with any threaded
525program.
3c20b9b6
UD
526
527@node Reporting Bugs
528@appendixsec Reporting Bugs
529@cindex reporting bugs
530@cindex bugs, reporting
531
532There are probably bugs in the GNU C library. There are certainly
533errors and omissions in this manual. If you report them, they will get
534fixed. If you don't, no one will ever know about them and they will
535remain unfixed for all eternity, if not longer.
536
04b9968b
UD
537It is a good idea to verify that the problem has not already been
538reported. Bugs are documented in two places: The file @file{BUGS}
612fdf25
AS
539describes a number of well known bugs and the bug tracking system has a
540WWW interface at
541@url{http://www-gnats.gnu.org:8080/cgi-bin/wwwgnats.pl}. The WWW
542interface gives you access to open and closed reports. The closed
543reports normally include a patch or a hint on solving the problem.
544
3c20b9b6
UD
545To report a bug, first you must find it. Hopefully, this will be the
546hard part. Once you've found a bug, make sure it's really a bug. A
547good way to do this is to see if the GNU C library behaves the same way
548some other C library does. If so, probably you are wrong and the
549libraries are right (but not necessarily). If not, one of the libraries
1792d4db
UD
550is probably wrong. It might not be the GNU library. Many historical
551Unix C libraries permit things that we don't, such as closing a file
552twice.
553
554If you think you have found some way in which the GNU C library does not
555conform to the ISO and POSIX standards (@pxref{Standards and
556Portability}), that is definitely a bug. Report it!
3c20b9b6
UD
557
558Once you're sure you've found a bug, try to narrow it down to the
559smallest test case that reproduces the problem. In the case of a C
560library, you really only need to narrow it down to one library
561function call, if possible. This should not be too difficult.
562
563The final step when you have a simple test case is to report the bug.
1792d4db
UD
564Do this using the @code{glibcbug} script. It is installed with libc, or
565if you haven't installed it, will be in your build directory. Send your
566test case, the results you got, the results you expected, and what you
567think the problem might be (if you've thought of anything).
568@code{glibcbug} will insert the configuration information we need to
612fdf25 569see, and ship the report off to @email{bugs@@gnu.org}. Don't send
1792d4db
UD
570a message there directly; it is fed to a program that expects mail to be
571formatted in a particular way. Use the script.
3c20b9b6
UD
572
573If you are not sure how a function should behave, and this manual
574doesn't tell you, that's a bug in the manual. Report that too! If the
575function's behavior disagrees with the manual, then either the library
576or the manual has a bug, so report the disagreement. If you find any
577errors or omissions in this manual, please report them to the Internet
9afc8a59 578address @email{bug-glibc-manual@@gnu.org}. If you refer to specific
04b9968b
UD
579sections of the manual, please include the section names for easier
580identification.
This page took 0.160203 seconds and 5 git commands to generate.