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