update from main archive 961016
[glibc.git] / manual / maint.texi
blob975de537aeaf85563da46f8a6fee813a1b01619e
1 @c \input /gd/gnu/doc/texinfo
2 @c This is for making the `INSTALL' file for the distribution.
3 @c Makeinfo ignores it when processing the file from the include.
4 @setfilename INSTALL
6 @node Maintenance, Copying, Library Summary, Top
7 @appendix Library Maintenance
9 @menu
10 * Installation::          How to configure, compile and
11                              install the GNU C library.
12 * Reporting Bugs::        How to report bugs (if you want to
13                              get them fixed) and other troubles
14                              you may have with the GNU C library.
15 * Source Layout::         How to add new functions or header files
16                              to the GNU C library.
17 * Porting::               How to port the GNU C library to
18                              a new machine or operating system.
19 * Contributors::          Contributors to the GNU C Library.
20 @end menu
22 @node Installation
23 @appendixsec How to Install the GNU C Library
24 @cindex installing the library
26 Installation of the GNU C library is relatively simple, but usually
27 requires several GNU tools to be installed already.
28 @iftex
29 (@pxref{Tools for Installation}, below.)
30 @end iftex
32 @menu
33 * Tools for Installation::      We recommend using these tools to build.
34 * Supported Configurations::    What systems the GNU C library runs on.
35 @end menu
37 To configure the GNU C library for your system, run the shell script
38 @file{configure} with @code{sh}.  Use an argument which is the
39 conventional GNU name for your system configuration---for example,
40 @samp{sparc-sun-sunos4.1}, for a Sun 4 running SunOS 4.1.
41 @xref{Installation, Installation, Installing GNU CC, gcc.info, Using and
42 Porting GNU CC}, for a full description of standard GNU configuration
43 names.  If you omit the configuration name, @file{configure} will try to
44 guess one for you by inspecting the system it is running on.  It may or
45 may not be able to come up with a guess, and the its guess might be
46 wrong.  @file{configure} will tell you the canonical name of the chosen
47 configuration before proceeding.
49 Here are some options that you should specify (if appropriate) when
50 you run @code{configure}:
52 @table @samp
53 @item --with-gnu-ld
54 Use this option if you plan to use GNU @code{ld} to link programs with
55 the GNU C Library.  (We strongly recommend that you do.)  This option
56 enables use of features that exist only in GNU @code{ld}; so if you
57 configure for GNU @code{ld} you must use GNU @code{ld} @emph{every time}
58 you link with the GNU C Library, and when building it.
60 @item --with-gnu-as
61 Use this option if you plan to use the GNU assembler, @code{gas}, when
62 building the GNU C Library.  On some systems, the library may not build
63 properly if you do @emph{not} use @code{gas}.
65 @item --with-gnu-binutils
66 This option implies both @w{@samp{--with-gnu-ld}} and @w{@samp{--with-gnu-as}}.
67 On systems where GNU tools are the system tools, there is no need to
68 specify this option.  These include GNU, GNU/Linux, and free BSD systems.
70 @c extra blank line makes it look better
71 @item --without-fp
72 @itemx --nfp
74 Use this option if your computer lacks hardware floating-point support.
76 @item --prefix=@var{directory}
77 Install machine-independent data files in subdirectories of
78 @file{@var{directory}}.  (You can also set this in @file{configparms};
79 see below.)
81 @item --exec-prefix=@var{directory}
82 Install the library and other machine-dependent files in subdirectories
83 of @file{@var{directory}}.  (You can also set this in
84 @file{configparms}; see below.)
86 @item --enable-shared
87 @itemx --disable-shared
88 Enable or disable building of an ELF shared library on systems that
89 support it.  The default is to build the shared library on systems using
90 ELF when the GNU @code{binutils} are available.
92 @item --enable-profile
93 @itemx --disable-profile
94 Enable or disable building of the profiled C library, @samp{-lc_p}.  The
95 default is to build the profiled library.  You may wish to disable it if
96 you don't plan to do profiling, because it doubles the build time of
97 compiling just the unprofiled static library.
99 @item --enable-omitfp
100 Enable building a highly-optimized but possibly undebuggable static C
101 library.  This causes the normal static and shared (if enabled) C
102 libraries to be compiled with maximal optimization, including the
103 @samp{-fomit-frame-pointer} switch that makes debugging impossible on
104 many machines, and without debugging information (which makes the
105 binaries substantially smaller).  An additional static library is
106 compiled with no optimization and full debugging information, and
107 installed as @samp{-lc_g}.
108 @end table
110 The simplest way to run @code{configure} is to do it in the directory
111 that contains the library sources.  This prepares to build the library
112 in that very directory.
114 You can prepare to build the library in some other directory by going
115 to that other directory to run @code{configure}.  In order to run
116 configure, you will have to specify a directory for it, like this:
118 @smallexample
119 mkdir sun4
120 cd sun4
121 ../configure sparc-sun-sunos4.1
122 @end smallexample
124 @noindent
125 @code{configure} looks for the sources in whatever directory you
126 specified for finding @code{configure} itself.  It does not matter where
127 in the file system the source and build directories are---as long as you
128 specify the source directory when you run @code{configure}, you will get
129 the proper results.
131 This feature lets you keep sources and binaries in different
132 directories, and that makes it easy to build the library for several
133 different machines from the same set of sources.  Simply create a
134 build directory for each target machine, and run @code{configure} in
135 that directory specifying the target machine's configuration name.
137 The library has a number of special-purpose configuration parameters.
138 These are defined in the file @file{Makeconfig}; see the comments in
139 that file for the details.
141 But don't edit the file @file{Makeconfig} yourself---instead, create a
142 file @file{configparms} in the directory where you are building the
143 library, and define in that file the parameters you want to specify.
144 @file{configparms} should @strong{not} be an edited copy of
145 @file{Makeconfig}; specify only the parameters that you want to
146 override.  To see how to set these parameters, find the section of
147 @file{Makeconfig} that says ``These are the configuration variables.''
148 Then for each parameter that you want to change, copy the definition
149 from @file{Makeconfig} to your new @file{configparms} file, and change
150 the value as appropriate for your system.
152 It is easy to configure the GNU C library for cross-compilation by
153 setting a few variables in @file{configparms}.  Set @code{CC} to the
154 cross-compiler for the target you configured the library for; it is
155 important to use this same @code{CC} value when running
156 @code{configure}, like this: @samp{CC=@var{target}-gcc configure
157 @var{target}}.  Set @code{BUILD_CC} to the compiler to use for for
158 programs run on the build system as part of compiling the library.  You
159 may need to set @code{AR} and @code{RANLIB} to cross-compiling versions
160 of @code{ar} and @code{ranlib} if the native tools are not configured to
161 work with object files for the target you configured for.
163 Some of the machine-dependent code for some machines uses extensions in
164 the GNU C compiler, so you may need to compile the library with GCC.
165 (In fact, all of the existing complete ports require GCC.)
168 To build the library and related programs, type @code{make}.  This will
169 produce a lot of output, some of which may look like errors from
170 @code{make} (but isn't).  Look for error messages from @code{make}
171 containing @samp{***}.  Those indicate that something is really wrong.
173 To build and run some test programs which exercise some of the library
174 facilities, type @code{make check}.  This will produce several files
175 with names like @file{@var{program}.out}.
177 To format the @cite{GNU C Library Reference Manual} for printing, type
178 @w{@code{make dvi}}.
180 To install the library and its header files, and the Info files of the
181 manual, type @code{make install}.  This will build things if necessary,
182 before installing them.@refill
184 @node Tools for Installation
185 @appendixsubsec Recommended Tools to Install the GNU C Library
186 @cindex installation tools
187 @cindex tools, for installing library
189 We recommend installing the following GNU tools before attempting to
190 build the GNU C library:
192 @itemize @bullet
193 @item
194 @code{make} 3.75
196 You need the latest version of GNU @code{make}.  Modifying the GNU C
197 Library to work with other @code{make} programs would be so hard that we
198 recommend you port GNU @code{make} instead.  @strong{Really.}
199 We recommend version GNU @code{make} version 3.75 or later.
201 @item
202 GCC 2.7.2
204 On most platforms, the GNU C library can only be compiled with the GNU C
205 compiler.  We recommend GCC version 2.7.2 or later; earlier versions may
206 have problems.
208 @item
209 @code{binutils} 2.7
211 Using the GNU @code{binutils} (assembler, linker, and related tools) is
212 preferable when possible, and they are required to build an ELF shared C
213 library.  We recommend @code{binutils} version 2.7 or later; earlier
214 versions are known to have problems or to not support all architectures.
215 @end itemize
217 @node Supported Configurations
218 @appendixsubsec Supported Configurations
219 @cindex configurations, all supported
221 The GNU C Library currently supports configurations that match the
222 following patterns:
224 @smallexample
225 alpha-dec-osf1
226 alpha-@var{anything}-linux
227 alpha-@var{anything}-linuxecoff
228 i@var{x}86-@var{anything}-bsd4.3
229 i@var{x}86-@var{anything}-gnu
230 i@var{x}86-@var{anything}-isc2.2
231 i@var{x}86-@var{anything}-isc3.@var{n}
232 i@var{x}86-@var{anything}-linux
233 i@var{x}86-@var{anything}-sco3.2
234 i@var{x}86-@var{anything}-sco3.2v4
235 i@var{x}86-@var{anything}-sysv
236 i@var{x}86-@var{anything}-sysv4
237 i@var{x}86-force_cpu386-none
238 i@var{x}86-sequent-bsd
239 i960-nindy960-none
240 m68k-hp-bsd4.3
241 m68k-mvme135-none
242 m68k-mvme136-none
243 m68k-sony-newsos3
244 m68k-sony-newsos4
245 m68k-sun-sunos4.@var{n}
246 mips-dec-ultrix4.@var{n}
247 mips-sgi-irix4.@var{n}
248 sparc-sun-solaris2.@var{n}
249 sparc-sun-sunos4.@var{n}
250 @end smallexample
252 Each case of @samp{i@var{x}86} can be @samp{i386}, @samp{i486},
253 @samp{i586}, or @samp{i686}..  All of those configurations produce a
254 library that can run on any of these processors.  The library will be
255 optimized for the specified processor, but will not use instructions not
256 available on all of them.
258 While no other configurations are supported, there are handy aliases for
259 these few.  (These aliases work in other GNU software as well.)
261 @smallexample
262 decstation
263 hp320-bsd4.3 hp300bsd
264 i486-gnu
265 i586-linux
266 i386-sco
267 i386-sco3.2v4
268 i386-sequent-dynix
269 i386-svr4
270 news
271 sun3-sunos4.@var{n} sun3
272 sun4-solaris2.@var{n} sun4-sunos5.@var{n}
273 sun4-sunos4.@var{n} sun4
274 @end smallexample
276 @node Reporting Bugs
277 @appendixsec Reporting Bugs
278 @cindex reporting bugs
279 @cindex bugs, reporting
281 There are probably bugs in the GNU C library.  There are certainly
282 errors and omissions in this manual.  If you report them, they will get
283 fixed.  If you don't, no one will ever know about them and they will
284 remain unfixed for all eternity, if not longer.
286 To report a bug, first you must find it.  Hopefully, this will be the
287 hard part.  Once you've found a bug, make sure it's really a bug.  A
288 good way to do this is to see if the GNU C library behaves the same way
289 some other C library does.  If so, probably you are wrong and the
290 libraries are right (but not necessarily).  If not, one of the libraries
291 is probably wrong.
293 Once you're sure you've found a bug, try to narrow it down to the
294 smallest test case that reproduces the problem.  In the case of a C
295 library, you really only need to narrow it down to one library
296 function call, if possible.  This should not be too difficult.
298 The final step when you have a simple test case is to report the bug.
299 When reporting a bug, send your test case, the results you got, the
300 results you expected, what you think the problem might be (if you've
301 thought of anything), your system type, and the version of the GNU C
302 library which you are using.  Also include the files
303 @file{config.status} and @file{config.make} which are created by running
304 @file{configure}; they will be in whatever directory was current when
305 you ran @file{configure}.
307 If you think you have found some way in which the GNU C library does not
308 conform to the ANSI and POSIX standards (@pxref{Standards and
309 Portability}), that is definitely a bug.  Report it!@refill
311 Send bug reports to the Internet address
312 @samp{bug-glibc@@prep.ai.mit.edu} or the UUCP path
313 @samp{mit-eddie!prep.ai.mit.edu!bug-glibc}.  If you have other problems
314 with installation or use, please report those as well.@refill
316 If you are not sure how a function should behave, and this manual
317 doesn't tell you, that's a bug in the manual.  Report that too!  If the
318 function's behavior disagrees with the manual, then either the library
319 or the manual has a bug, so report the disagreement.  If you find any
320 errors or omissions in this manual, please report them to the Internet
321 address @samp{bug-glibc-manual@@prep.ai.mit.edu} or the UUCP path
322 @samp{mit-eddie!prep.ai.mit.edu!bug-glibc-manual}.
324 @node Source Layout
325 @appendixsec Adding New Functions
327 The process of building the library is driven by the makefiles, which
328 make heavy use of special features of GNU @code{make}.  The makefiles
329 are very complex, and you probably don't want to try to understand them.
330 But what they do is fairly straightforward, and only requires that you
331 define a few variables in the right places.
333 The library sources are divided into subdirectories, grouped by topic.
335 The @file{string} subdirectory has all the string-manipulation
336 functions, @file{math} has all the mathematical functions, etc.
338 Each subdirectory contains a simple makefile, called @file{Makefile},
339 which defines a few @code{make} variables and then includes the global
340 makefile @file{Rules} with a line like:
342 @smallexample
343 include ../Rules
344 @end smallexample
346 @noindent
347 The basic variables that a subdirectory makefile defines are:
349 @table @code
350 @item subdir
351 The name of the subdirectory, for example @file{stdio}.
352 This variable @strong{must} be defined.
354 @item headers
355 The names of the header files in this section of the library,
356 such as @file{stdio.h}.
358 @item routines
359 @itemx aux
360 The names of the modules (source files) in this section of the library.
361 These should be simple names, such as @samp{strlen} (rather than
362 complete file names, such as @file{strlen.c}).  Use @code{routines} for
363 modules that define functions in the library, and @code{aux} for
364 auxiliary modules containing things like data definitions.  But the
365 values of @code{routines} and @code{aux} are just concatenated, so there
366 really is no practical difference.@refill
368 @item tests
369 The names of test programs for this section of the library.  These
370 should be simple names, such as @samp{tester} (rather than complete file
371 names, such as @file{tester.c}).  @w{@samp{make tests}} will build and
372 run all the test programs.  If a test program needs input, put the test
373 data in a file called @file{@var{test-program}.input}; it will be given to
374 the test program on its standard input.  If a test program wants to be
375 run with arguments, put the arguments (all on a single line) in a file
376 called @file{@var{test-program}.args}.  Test programs should exit with
377 zero status when the test passes, and nonzero status when the test
378 indicates a bug in the library or error in building.
380 @item others
381 The names of ``other'' programs associated with this section of the
382 library.  These are programs which are not tests per se, but are other
383 small programs included with the library.  They are built by
384 @w{@samp{make others}}.@refill
386 @item install-lib
387 @itemx install-data
388 @itemx install
389 Files to be installed by @w{@samp{make install}}.  Files listed in
390 @samp{install-lib} are installed in the directory specified by
391 @samp{libdir} in @file{configparms} or @file{Makeconfig}
392 (@pxref{Installation}).  Files listed in @code{install-data} are
393 installed in the directory specified by @samp{datadir} in
394 @file{configparms} or @file{Makeconfig}.  Files listed in @code{install}
395 are installed in the directory specified by @samp{bindir} in
396 @file{configparms} or @file{Makeconfig}.@refill
398 @item distribute
399 Other files from this subdirectory which should be put into a
400 distribution tar file.  You need not list here the makefile itself or
401 the source and header files listed in the other standard variables.
402 Only define @code{distribute} if there are files used in an unusual way
403 that should go into the distribution.
405 @item generated
406 Files which are generated by @file{Makefile} in this subdirectory.
407 These files will be removed by @w{@samp{make clean}}, and they will
408 never go into a distribution.
410 @item extra-objs
411 Extra object files which are built by @file{Makefile} in this
412 subdirectory.  This should be a list of file names like @file{foo.o};
413 the files will actually be found in whatever directory object files are
414 being built in.  These files will be removed by @w{@samp{make clean}}.
415 This variable is used for secondary object files needed to build
416 @code{others} or @code{tests}.
417 @end table
419 @node Porting
420 @appendixsec Porting the GNU C Library
422 The GNU C library is written to be easily portable to a variety of
423 machines and operating systems.  Machine- and operating system-dependent
424 functions are well separated to make it easy to add implementations for
425 new machines or operating systems.  This section describes the layout of
426 the library source tree and explains the mechanisms used to select
427 machine-dependent code to use.
429 All the machine-dependent and operating system-dependent files in the
430 library are in the subdirectory @file{sysdeps} under the top-level
431 library source directory.  This directory contains a hierarchy of
432 subdirectories (@pxref{Hierarchy Conventions}).
434 Each subdirectory of @file{sysdeps} contains source files for a
435 particular machine or operating system, or for a class of machine or
436 operating system (for example, systems by a particular vendor, or all
437 machines that use IEEE 754 floating-point format).  A configuration
438 specifies an ordered list of these subdirectories.  Each subdirectory
439 implicitly appends its parent directory to the list.  For example,
440 specifying the list @file{unix/bsd/vax} is equivalent to specifying the
441 list @file{unix/bsd/vax unix/bsd unix}.  A subdirectory can also specify
442 that it implies other subdirectories which are not directly above it in
443 the directory hierarchy.  If the file @file{Implies} exists in a
444 subdirectory, it lists other subdirectories of @file{sysdeps} which are
445 appended to the list, appearing after the subdirectory containing the
446 @file{Implies} file.  Lines in an @file{Implies} file that begin with a
447 @samp{#} character are ignored as comments.  For example,
448 @file{unix/bsd/Implies} contains:@refill
449 @smallexample
450 # BSD has Internet-related things.
451 unix/inet
452 @end smallexample
453 @noindent
454 and @file{unix/Implies} contains:
455 @need 300
456 @smallexample
457 posix
458 @end smallexample
460 @noindent
461 So the final list is @file{unix/bsd/vax unix/bsd unix/inet unix posix}.
463 @file{sysdeps} has two ``special'' subdirectories, called @file{generic}
464 and @file{stub}.  These two are always implicitly appended to the list
465 of subdirectories (in that order), so you needn't put them in an
466 @file{Implies} file, and you should not create any subdirectories under
467 them intended to be new specific categories.  @file{generic} is for
468 things that can be implemented in machine-independent C, using only
469 other machine-independent functions in the C library.  @file{stub} is
470 for @dfn{stub} versions of functions which cannot be implemented on a
471 particular machine or operating system.  The stub functions always
472 return an error, and set @code{errno} to @code{ENOSYS} (Function not
473 implemented).  @xref{Error Reporting}.
475 A source file is known to be system-dependent by its having a version in
476 @file{generic} or @file{stub}; every generally-available function whose
477 implementation is system-dependent in should have either a generic or
478 stub implementation (there is no point in having both).  Some rare functions
479 are only useful on specific systems and aren't defined at all on others;
480 these do not appear anywhere in the system-independent source code or makefiles
481 (including the @file{generic} and @file{stub} directories), only in the
482 system-dependent @file{Makefile} in the specific system's subdirectory.
484 If you come across a file that is in one of the main source directories
485 (@file{string}, @file{stdio}, etc.), and you want to write a machine- or
486 operating system-dependent version of it, move the file into
487 @file{sysdeps/generic} and write your new implementation in the
488 appropriate system-specific subdirectory.  Note that if a file is to be
489 system-dependent, it @strong{must not} appear in one of the main source
490 directories.@refill
492 There are a few special files that may exist in each subdirectory of
493 @file{sysdeps}:
495 @comment Blank lines after items make the table look better.
496 @table @file
497 @item Makefile
499 A makefile for this machine or operating system, or class of machine or
500 operating system.  This file is included by the library makefile
501 @file{Makerules}, which is used by the top-level makefile and the
502 subdirectory makefiles.  It can change the variables set in the
503 including makefile or add new rules.  It can use GNU @code{make}
504 conditional directives based on the variable @samp{subdir} (see above) to
505 select different sets of variables and rules for different sections of
506 the library.  It can also set the @code{make} variable
507 @samp{sysdep-routines}, to specify extra modules to be included in the
508 library.  You should use @samp{sysdep-routines} rather than adding
509 modules to @samp{routines} because the latter is used in determining
510 what to distribute for each subdirectory of the main source tree.@refill
512 Each makefile in a subdirectory in the ordered list of subdirectories to
513 be searched is included in order.  Since several system-dependent
514 makefiles may be included, each should append to @samp{sysdep-routines}
515 rather than simply setting it:
517 @smallexample
518 sysdep-routines := $(sysdep-routines) foo bar
519 @end smallexample
521 @need 1000
522 @item Subdirs
524 This file contains the names of new whole subdirectories under the
525 top-level library source tree that should be included for this system.
526 These subdirectories are treated just like the system-independent
527 subdirectories in the library source tree, such as @file{stdio} and
528 @file{math}.
530 Use this when there are completely new sets of functions and header
531 files that should go into the library for the system this subdirectory
532 of @file{sysdeps} implements.  For example,
533 @file{sysdeps/unix/inet/Subdirs} contains @file{inet}; the @file{inet}
534 directory contains various network-oriented operations which only make
535 sense to put in the library on systems that support the Internet.@refill
537 @item Dist
539 This file contains the names of files (relative to the subdirectory of
540 @file{sysdeps} in which it appears) which should be included in the
541 distribution.  List any new files used by rules in the @file{Makefile}
542 in the same directory, or header files used by the source files in that
543 directory.  You don't need to list files that are implementations
544 (either C or assembly source) of routines whose names are given in the
545 machine-independent makefiles in the main source tree.
547 @item configure
549 This file is a shell script fragment to be run at configuration time.
550 The top-level @file{configure} script uses the shell @code{.} command to
551 read the @file{configure} file in each system-dependent directory
552 chosen, in order.  The @file{configure} files are often generated from
553 @file{configure.in} files using Autoconf.
555 A system-dependent @file{configure} script will usually add things to
556 the shell variables @samp{DEFS} and @samp{config_vars}; see the
557 top-level @file{configure} script for details.  The script can check for
558 @w{@samp{--with-@var{package}}} options that were passed to the
559 top-level @file{configure}.  For an option
560 @w{@samp{--with-@var{package}=@var{value}}} @file{configure} sets the
561 shell variable @w{@samp{with_@var{package}}} (with any dashes in
562 @var{package} converted to underscores) to @var{value}; if the option is
563 just @w{@samp{--with-@var{package}}} (no argument), then it sets
564 @w{@samp{with_@var{package}}} to @samp{yes}.
566 @item configure.in
568 This file is an Autoconf input fragment to be processed into the file
569 @file{configure} in this subdirectory.  @xref{Introduction,,,
570 autoconf.info, Autoconf: Generating Automatic Configuration Scripts},
571 for a description of Autoconf.  You should write either @file{configure}
572 or @file{configure.in}, but not both.  The first line of
573 @file{configure.in} should invoke the @code{m4} macro
574 @samp{GLIBC_PROVIDES}.  This macro does several @code{AC_PROVIDE} calls
575 for Autoconf macros which are used by the top-level @file{configure}
576 script; without this, those macros might be invoked again unnecessarily
577 by Autoconf.
578 @end table
580 That is the general system for how system-dependencies are isolated.
581 @iftex
582 The next section explains how to decide what directories in
583 @file{sysdeps} to use.  @ref{Porting to Unix}, has some tips on porting
584 the library to Unix variants.
585 @end iftex
587 @menu
588 * Hierarchy Conventions::       The layout of the @file{sysdeps} hierarchy.
589 * Porting to Unix::             Porting the library to an average
590                                    Unix-like system.
591 @end menu
593 @node Hierarchy Conventions
594 @appendixsubsec Layout of the @file{sysdeps} Directory Hierarchy
596 A GNU configuration name has three parts: the CPU type, the
597 manufacturer's name, and the operating system.  @file{configure} uses
598 these to pick the list of system-dependent directories to look for.  If
599 the @samp{--nfp} option is @emph{not} passed to @file{configure}, the
600 directory @file{@var{machine}/fpu} is also used.  The operating system
601 often has a @dfn{base operating system}; for example, if the operating
602 system is @samp{sunos4.1}, the base operating system is @samp{unix/bsd}.
603 The algorithm used to pick the list of directories is simple:
604 @file{configure} makes a list of the base operating system,
605 manufacturer, CPU type, and operating system, in that order.  It then
606 concatenates all these together with slashes in between, to produce a
607 directory name; for example, the configuration @w{@samp{sparc-sun-sunos4.1}}
608 results in @file{unix/bsd/sun/sparc/sunos4.1}.  @file{configure} then
609 tries removing each element of the list in turn, so
610 @file{unix/bsd/sparc} and @file{sun/sparc} are also tried, among others.
611 Since the precise version number of the operating system is often not
612 important, and it would be very inconvenient, for example, to have
613 identical @file{sunos4.1.1} and @file{sunos4.1.2} directories,
614 @file{configure} tries successively less specific operating system names
615 by removing trailing suffixes starting with a period.
617 As an example, here is the complete list of directories that would be
618 tried for the configuration @w{@samp{sparc-sun-sunos4.1}} (without the
619 @w{@samp{--nfp}} option):
621 @smallexample
622 sparc/fpu
623 unix/bsd/sun/sunos4.1/sparc
624 unix/bsd/sun/sunos4.1
625 unix/bsd/sun/sunos4/sparc
626 unix/bsd/sun/sunos4
627 unix/bsd/sun/sunos/sparc
628 unix/bsd/sun/sunos
629 unix/bsd/sun/sparc
630 unix/bsd/sun
631 unix/bsd/sunos4.1/sparc
632 unix/bsd/sunos4.1
633 unix/bsd/sunos4/sparc
634 unix/bsd/sunos4
635 unix/bsd/sunos/sparc
636 unix/bsd/sunos
637 unix/bsd/sparc
638 unix/bsd
639 unix/sun/sunos4.1/sparc
640 unix/sun/sunos4.1
641 unix/sun/sunos4/sparc
642 unix/sun/sunos4
643 unix/sun/sunos/sparc
644 unix/sun/sunos
645 unix/sun/sparc
646 unix/sun
647 unix/sunos4.1/sparc
648 unix/sunos4.1
649 unix/sunos4/sparc
650 unix/sunos4
651 unix/sunos/sparc
652 unix/sunos
653 unix/sparc
654 unix
655 sun/sunos4.1/sparc
656 sun/sunos4.1
657 sun/sunos4/sparc
658 sun/sunos4
659 sun/sunos/sparc
660 sun/sunos
661 sun/sparc
663 sunos4.1/sparc
664 sunos4.1
665 sunos4/sparc
666 sunos4
667 sunos/sparc
668 sunos
669 sparc
670 @end smallexample
672 Different machine architectures are conventionally subdirectories at the
673 top level of the @file{sysdeps} directory tree.  For example,
674 @w{@file{sysdeps/sparc}} and @w{@file{sysdeps/m68k}}.  These contain
675 files specific to those machine architectures, but not specific to any
676 particular operating system.  There might be subdirectories for
677 specializations of those architectures, such as
678 @w{@file{sysdeps/m68k/68020}}. Code which is specific to the
679 floating-point coprocessor used with a particular machine should go in
680 @w{@file{sysdeps/@var{machine}/fpu}}.
682 There are a few directories at the top level of the @file{sysdeps}
683 hierarchy that are not for particular machine architectures.
685 @table @file
686 @item generic
687 @itemx stub
688 As described above (@pxref{Porting}), these are the two subdirectories
689 that every configuration implicitly uses after all others.
691 @item ieee754
692 This directory is for code using the IEEE 754 floating-point format,
693 where the C type @code{float} is IEEE 754 single-precision format, and
694 @code{double} is IEEE 754 double-precision format.  Usually this
695 directory is referred to in the @file{Implies} file in a machine
696 architecture-specific directory, such as @file{m68k/Implies}.
698 @item posix
699 This directory contains implementations of things in the library in
700 terms of @sc{POSIX.1} functions.  This includes some of the @sc{POSIX.1}
701 functions themselves.  Of course, @sc{POSIX.1} cannot be completely
702 implemented in terms of itself, so a configuration using just
703 @file{posix} cannot be complete.
705 @item unix
706 This is the directory for Unix-like things.  @xref{Porting to Unix}.
707 @file{unix} implies @file{posix}.  There are some special-purpose
708 subdirectories of @file{unix}:
710 @table @file
711 @item unix/common
712 This directory is for things common to both BSD and System V release 4.
713 Both @file{unix/bsd} and @file{unix/sysv/sysv4} imply @file{unix/common}.
715 @item unix/inet
716 This directory is for @code{socket} and related functions on Unix systems.
717 The @file{inet} top-level subdirectory is enabled by @file{unix/inet/Subdirs}.
718 @file{unix/common} implies @file{unix/inet}.
719 @end table
721 @item mach
722 This is the directory for things based on the Mach microkernel from CMU
723 (including the GNU operating system).  Other basic operating systems
724 (VMS, for example) would have their own directories at the top level of
725 the @file{sysdeps} hierarchy, parallel to @file{unix} and @file{mach}.
726 @end table
728 @node Porting to Unix
729 @appendixsubsec Porting the GNU C Library to Unix Systems
731 Most Unix systems are fundamentally very similar.  There are variations
732 between different machines, and variations in what facilities are
733 provided by the kernel.  But the interface to the operating system
734 facilities is, for the most part, pretty uniform and simple.
736 The code for Unix systems is in the directory @file{unix}, at the top
737 level of the @file{sysdeps} hierarchy.  This directory contains
738 subdirectories (and subdirectory trees) for various Unix variants.
740 The functions which are system calls in most Unix systems are
741 implemented in assembly code in files in @file{sysdeps/unix}.  These
742 files are named with a suffix of @samp{.S}; for example,
743 @file{__open.S}.  Files ending in @samp{.S} are run through the C
744 preprocessor before being fed to the assembler.
746 These files all use a set of macros that should be defined in
747 @file{sysdep.h}.  The @file{sysdep.h} file in @file{sysdeps/unix}
748 partially defines them; a @file{sysdep.h} file in another directory must
749 finish defining them for the particular machine and operating system
750 variant.  See @file{sysdeps/unix/sysdep.h} and the machine-specific
751 @file{sysdep.h} implementations to see what these macros are and what
752 they should do.@refill
754 The system-specific makefile for the @file{unix} directory (that is, the
755 file @file{sysdeps/unix/Makefile}) gives rules to generate several files
756 from the Unix system you are building the library on (which is assumed
757 to be the target system you are building the library @emph{for}).  All
758 the generated files are put in the directory where the object files are
759 kept; they should not affect the source tree itself.  The files
760 generated are @file{ioctls.h}, @file{errnos.h}, @file{sys/param.h}, and
761 @file{errlist.c} (for the @file{stdio} section of the library).
763 @ignore
764 @c This section might be a good idea if it is finished,
765 @c but there's no point including it as it stands. --rms
766 @c @appendixsec Compatibility with Traditional C
768 @c ??? This section is really short now.  Want to keep it? --roland
770 Although the GNU C library implements the ANSI C library facilities, you
771 @emph{can} use the GNU C library with traditional, ``pre-ANSI'' C
772 compilers.  However, you need to be careful because the content and
773 organization of the GNU C library header files differs from that of
774 traditional C implementations.  This means you may need to make changes
775 to your program in order to get it to compile.
776 @end ignore
778 @node Contributors
779 @appendixsec Contributors to the GNU C Library
781 The GNU C library was written originally by Roland McGrath.  Some parts
782 of the library were contributed or worked on by other people.
784 @itemize @bullet
785 @item
786 The @code{getopt} function and related code were written by
787 Richard Stallman, @w{David J. MacKenzie}, and @w{Roland McGrath}.
789 @item
790 The merge sort function @code{qsort} was written by Michael J. Haertel.
792 @item
793 The quick sort function used as a fallback by @code{qsort} was written
794 by Douglas C. Schmidt.
796 @item
797 The memory allocation functions @code{malloc}, @code{realloc} and
798 @code{free} and related code were written by Michael J. Haertel.
800 @comment tege's name has an umlaut.
801 @tex
802 \xdef\SETtege{Torbj\"orn Granlund}
803 @end tex
804 @ifinfo
805 @set tege Torbjorn Granlund
806 @end ifinfo
807 @item
808 Fast implementations of many of the string functions (@code{memcpy},
809 @code{strlen}, etc.) were written by @value{tege}.
811 @item
812 The @file{tar.h} header file was written by David J. MacKenzie.
814 @item
815 The port to the MIPS DECStation running Ultrix 4
816 (@code{mips-dec-ultrix4})
817 was contributed by Brendan Kehoe and Ian Lance Taylor.
819 @item
820 The DES encryption function @code{crypt} and related functions were
821 contributed by Michael Glad.
823 @item
824 The @code{ftw} function was contributed by Ian Lance Taylor.
826 @item
827 The startup code to support SunOS shared libraries was contributed by
828 Tom Quinn.
830 @item
831 The @code{mktime} function was contributed by Paul Eggert.
833 @item
834 The port to the Sequent Symmetry running Dynix version 3
835 (@code{i386-sequent-bsd}) was contributed by Jason Merrill.
837 @item
838 The timezone support code is derived from the public-domain timezone
839 package by Arthur David Olson and his many contributors.
841 @item
842 The port to the DEC Alpha running OSF/1 (@code{alpha-dec-osf1}) was
843 contributed by Brendan Kehoe, using some code written by Roland McGrath.
845 @item
846 The port to SGI machines running Irix 4 (@code{mips-sgi-irix4}) was
847 contributed by Tom Quinn.
849 @item
850 The port of the Mach and Hurd code to the MIPS architecture
851 (@code{mips-@var{anything}-gnu}) was contributed by Kazumoto Kojima.
853 @item
854 The floating-point printing function used by @code{printf} and friends
855 and the floating-point reading function used by @code{scanf},
856 @code{strtod} and friends were written by Ulrich Drepper.  The
857 multi-precision integer functions used in those functions are taken from
858 GNU MP, which was contributed by @value{tege}.
860 @item
861 The internationalization support in the library, and the support
862 programs @code{locale} and @code{localedef}, were written by Ulrich
863 Drepper.  Ulrich Drepper adapted the support code for message catalogs
864 (@file{libintl.h}, etc.) from the GNU @code{gettext} package, which he
865 also wrote.  He also contributed the @code{catgets} support and the
866 entire suite of multi-byte and wide-character support functions
867 (@file{wctype.h}, @file{wchar.h}, etc.).
869 @item
870 The implementations of the @file{nsswitch.conf} mechanism and the files
871 and DNS backends for it were designed and written by Ulrich Drepper and
872 Roland McGrath, based on a backend interface defined by Peter Eriksson.
874 @item
875 The port to Linux i386/ELF (@code{i386-@var{anything}-linux}) was
876 contributed by Ulrich Drepper, based in large part on work done in
877 Hongjiu Lu's Linux version of the GNU C Library.
879 @item
880 The port to Linux/m68k (@code{m68k-@var{anything}-linux}) was
881 contributed by Andreas Schwab.
883 @item
884 Richard Henderson contributed the ELF dynamic linking code and other
885 support for the Alpha processor.
887 @item
888 David Mosberger-Tang contributed the port to Linux/Alpha
889 (@code{alpha-@var{anything}-linux}).
891 @item
892 Stephen R. van den Berg contributed a highly-optimized @code{strstr} function.
894 @item
895 Ulrich Drepper contributed the @code{hsearch} and @code{drand48}
896 families of functions; reentrant @samp{@dots{}@code{_r}} versions of the
897 @code{random} family; System V shared memory and IPC support code; and
898 several highly-optimized string functions for i@var{x}86 processors.
900 @item
901 The math functions are taken from @code{fdlibm-5.1} by Sun
902 Microsystems, as modified by J.T. Conklin, Ian Lance Taylor,
903 Ulrich Drepper, Andreas Schwab, and Roland McGrath.
905 @item
906 The @code{libio} library used to implement @code{stdio} functions on
907 some platforms was written by Per Bothner and modified by Ulrich Drepper.
909 @item
910 The Internet-related code (most of the @file{inet} subdirectory) and
911 several other miscellaneous functions and header files have been
912 included from 4.4 BSD with little or no modification.
914 All code incorporated from 4.4 BSD is under the following copyright:
916 @quotation
917 @display
918 Copyright @copyright{} 1991 Regents of the University of California.
919 All rights reserved.
920 @end display
922 Redistribution and use in source and binary forms, with or without
923 modification, are permitted provided that the following conditions
924 are met:
926 @enumerate
927 @item
928 Redistributions of source code must retain the above copyright
929 notice, this list of conditions and the following disclaimer.
930 @item
931 Redistributions in binary form must reproduce the above copyright
932 notice, this list of conditions and the following disclaimer in the
933 documentation and/or other materials provided with the distribution.
934 @item
935 All advertising materials mentioning features or use of this software
936 must display the following acknowledgement:
937 @quotation
938 This product includes software developed by the University of
939 California, Berkeley and its contributors.
940 @end quotation
941 @item
942 Neither the name of the University nor the names of its contributors
943 may be used to endorse or promote products derived from this software
944 without specific prior written permission.
945 @end enumerate
947 @sc{this software is provided by the regents and contributors ``as is'' and
948 any express or implied warranties, including, but not limited to, the
949 implied warranties of merchantability and fitness for a particular purpose
950 are disclaimed.  in no event shall the regents or contributors be liable
951 for any direct, indirect, incidental, special, exemplary, or consequential
952 damages (including, but not limited to, procurement of substitute goods
953 or services; loss of use, data, or profits; or business interruption)
954 however caused and on any theory of liability, whether in contract, strict
955 liability, or tort (including negligence or otherwise) arising in any way
956 out of the use of this software, even if advised of the possibility of
957 such damage.}
958 @end quotation
960 @item
961 The random number generation functions @code{random}, @code{srandom},
962 @code{setstate} and @code{initstate}, which are also the basis for the
963 @code{rand} and @code{srand} functions, were written by Earl T. Cohen
964 for the University of California at Berkeley and are copyrighted by the
965 Regents of the University of California.  They have undergone minor
966 changes to fit into the GNU C library and to fit the ANSI C standard,
967 but the functional code is Berkeley's.@refill
969 @item
970 The Internet resolver code is taken directly from BIND 4.9.5, which is
971 under both the Berkeley copyright above and also:
973 @quotation
974 Portions Copyright @copyright{} 1993 by Digital Equipment Corporation.
976 Permission to use, copy, modify, and distribute this software for any
977 purpose with or without fee is hereby granted, provided that the above
978 copyright notice and this permission notice appear in all copies, and
979 that the name of Digital Equipment Corporation not be used in
980 advertising or publicity pertaining to distribution of the document or
981 software without specific, written prior permission.
983 @sc{the software is provided ``as is'' and digital equipment corp.
984 disclaims all warranties with regard to this software, including all
985 implied warranties of merchantability and fitness.  in no event shall
986 digital equipment corporation be liable for any special, direct,
987 indirect, or consequential damages or any damages whatsoever resulting
988 from loss of use, data or profits, whether in an action of contract,
989 negligence or other tortious action, arising out of or in connection
990 with the use or performance of this software.}
991 @end quotation
993 @item
994 The code to support Sun RPC is taken verbatim from Sun's
995 @w{@sc{rpcsrc-4.0}} distribution, and is covered by this copyright:
997 @quotation
998 @display
999 Copyright @copyright{} 1984, Sun Microsystems, Inc.
1000 @end display
1002 Sun RPC is a product of Sun Microsystems, Inc. and is provided for
1003 unrestricted use provided that this legend is included on all tape media
1004 and as a part of the software program in whole or part.  Users may copy
1005 or modify Sun RPC without charge, but are not authorized to license or
1006 distribute it to anyone else except as part of a product or program
1007 developed by the user.
1009 @sc{sun rpc is provided as is with no warranties of any kind including the
1010 warranties of design, merchantibility and fitness for a particular
1011 purpose, or arising from a course of dealing, usage or trade practice.}
1013 Sun RPC is provided with no support and without any obligation on the
1014 part of Sun Microsystems, Inc. to assist in its use, correction,
1015 modification or enhancement.
1017 @sc{sun microsystems, inc. shall have no liability with respect to the
1018 infringement of copyrights, trade secrets or any patents by sun rpc
1019 or any part thereof.}
1021 In no event will Sun Microsystems, Inc. be liable for any lost revenue
1022 or profits or other special, indirect and consequential damages, even if
1023 Sun has been advised of the possibility of such damages.
1025 @display
1026 Sun Microsystems, Inc.
1027 2550 Garcia Avenue
1028 Mountain View, California  94043
1029 @end display
1030 @end quotation
1032 @item
1033 Some of the support code for Mach is taken from Mach 3.0 by CMU,
1034 and is under the following copyright terms:
1036 @quotation
1037 @display
1038 Mach Operating System
1039 Copyright @copyright{} 1991,1990,1989 Carnegie Mellon University
1040 All Rights Reserved.
1041 @end display
1043 Permission to use, copy, modify and distribute this software and its
1044 documentation is hereby granted, provided that both the copyright
1045 notice and this permission notice appear in all copies of the
1046 software, derivative works or modified versions, and any portions
1047 thereof, and that both notices appear in supporting documentation.
1049 @sc{carnegie mellon allows free use of this software in its ``as is''
1050 condition.  carnegie mellon disclaims any liability of any kind for
1051 any damages whatsoever resulting from the use of this software.}
1053 Carnegie Mellon requests users of this software to return to
1055 @display
1056  Software Distribution Coordinator
1057  School of Computer Science
1058  Carnegie Mellon University
1059  Pittsburgh PA 15213-3890
1060 @end display
1062 @noindent
1063 or @samp{Software.Distribution@@CS.CMU.EDU} any improvements or
1064 extensions that they make and grant Carnegie Mellon the rights to
1065 redistribute these changes.
1066 @end quotation
1068 @end itemize
1070 @c @bye