stdio-common: Reformat Makefile.
[glibc.git] / manual / maint.texi
bloba8441e20b623af398d947f068e9e422b1ff9ac7b
1 @node Maintenance, Platform, Installation, Top
2 @c %MENU% How to enhance and port the GNU C Library
3 @appendix Library Maintenance
5 @menu
6 * Source Layout::         How to add new functions or header files
7                              to the GNU C Library.
8 * Source Fortification::  Fortification of function calls.
9 * Symbol handling::       How to handle symbols in the GNU C Library.
10 * Porting::               How to port the GNU C Library to
11                              a new machine or operating system.
12 @end menu
14 @node Source Layout
15 @appendixsec Adding New Functions
17 The process of building the library is driven by the makefiles, which
18 make heavy use of special features of GNU @code{make}.  The makefiles
19 are very complex, and you probably don't want to try to understand them.
20 But what they do is fairly straightforward, and only requires that you
21 define a few variables in the right places.
23 The library sources are divided into subdirectories, grouped by topic.
25 The @file{string} subdirectory has all the string-manipulation
26 functions, @file{math} has all the mathematical functions, etc.
28 Each subdirectory contains a simple makefile, called @file{Makefile},
29 which defines a few @code{make} variables and then includes the global
30 makefile @file{Rules} with a line like:
32 @smallexample
33 include ../Rules
34 @end smallexample
36 @noindent
37 The basic variables that a subdirectory makefile defines are:
39 @table @code
40 @item subdir
41 The name of the subdirectory, for example @file{stdio}.
42 This variable @strong{must} be defined.
44 @item headers
45 The names of the header files in this section of the library,
46 such as @file{stdio.h}.
48 @item routines
49 @itemx aux
50 The names of the modules (source files) in this section of the library.
51 These should be simple names, such as @samp{strlen} (rather than
52 complete file names, such as @file{strlen.c}).  Use @code{routines} for
53 modules that define functions in the library, and @code{aux} for
54 auxiliary modules containing things like data definitions.  But the
55 values of @code{routines} and @code{aux} are just concatenated, so there
56 really is no practical difference.
58 @item tests
59 The names of test programs for this section of the library.  These
60 should be simple names, such as @samp{tester} (rather than complete file
61 names, such as @file{tester.c}).  @w{@samp{make tests}} will build and
62 run all the test programs.  If a test program needs input, put the test
63 data in a file called @file{@var{test-program}.input}; it will be given to
64 the test program on its standard input.  If a test program wants to be
65 run with arguments, put the arguments (all on a single line) in a file
66 called @file{@var{test-program}.args}.  Test programs should exit with
67 zero status when the test passes, and nonzero status when the test
68 indicates a bug in the library or error in building.
70 @item others
71 The names of ``other'' programs associated with this section of the
72 library.  These are programs which are not tests per se, but are other
73 small programs included with the library.  They are built by
74 @w{@samp{make others}}.
76 @item install-lib
77 @itemx install-data
78 @itemx install
79 Files to be installed by @w{@samp{make install}}.  Files listed in
80 @samp{install-lib} are installed in the directory specified by
81 @samp{libdir} in @file{configparms} or @file{Makeconfig}
82 (@pxref{Installation}).  Files listed in @code{install-data} are
83 installed in the directory specified by @samp{datadir} in
84 @file{configparms} or @file{Makeconfig}.  Files listed in @code{install}
85 are installed in the directory specified by @samp{bindir} in
86 @file{configparms} or @file{Makeconfig}.
88 @item distribute
89 Other files from this subdirectory which should be put into a
90 distribution tar file.  You need not list here the makefile itself or
91 the source and header files listed in the other standard variables.
92 Only define @code{distribute} if there are files used in an unusual way
93 that should go into the distribution.
95 @item generated
96 Files which are generated by @file{Makefile} in this subdirectory.
97 These files will be removed by @w{@samp{make clean}}, and they will
98 never go into a distribution.
100 @item extra-objs
101 Extra object files which are built by @file{Makefile} in this
102 subdirectory.  This should be a list of file names like @file{foo.o};
103 the files will actually be found in whatever directory object files are
104 being built in.  These files will be removed by @w{@samp{make clean}}.
105 This variable is used for secondary object files needed to build
106 @code{others} or @code{tests}.
107 @end table
109 @menu
110 * Platform: Adding Platform-specific.             Adding platform-specific
111                                          features.
112 @end menu
114 @node Adding Platform-specific
115 @appendixsubsec Platform-specific types, macros and functions
117 It's sometimes necessary to provide nonstandard, platform-specific
118 features to developers.  The C library is traditionally the
119 lowest library layer, so it makes sense for it to provide these
120 low-level features.  However, including these features in the C
121 library may be a disadvantage if another package provides them
122 as well as there will be two conflicting versions of them.  Also,
123 the features won't be available to projects that do not use
124 @theglibc{} but use other GNU tools, like GCC.
126 The current guidelines are:
127 @itemize @bullet
128 @item
129 If the header file provides features that only make sense on a particular
130 machine architecture and have nothing to do with an operating system, then
131 the features should ultimately be provided as GCC built-in functions.  Until
132 then, @theglibc{} may provide them in the header file.  When the GCC built-in
133 functions become available, those provided in the header file should be made
134 conditionally available prior to the GCC version in which the built-in
135 function was made available.
137 @item
138 If the header file provides features that are specific to an operating system,
139 both GCC and @theglibc{} could provide it, but @theglibc{} is preferred
140 as it already has a lot of information about the operating system.
142 @item
143 If the header file provides features that are specific to an operating system
144 but used by @theglibc{}, then @theglibc{} should provide them.
145 @end itemize
147 The general solution for providing low-level features is to export them as
148 follows:
150 @itemize @bullet
151 @item
152 A nonstandard, low-level header file that defines macros and inline
153 functions should be called @file{sys/platform/@var{name}.h}.
155 @item
156 Each header file's name should include the platform name, to avoid
157 users thinking there is anything in common between the different
158 header files for different platforms.  For example, a
159 @file{sys/platform/@var{arch}.h} name such as
160 @file{sys/platform/ppc.h} is better than @file{sys/platform.h}.
162 @item
163 A platform-specific header file provided by @theglibc{} should coordinate
164 with GCC such that compiler built-in versions of the functions and macros are
165 preferred if available.  This means that user programs will only ever need to
166 include @file{sys/platform/@var{arch}.h}, keeping the same names of types,
167 macros, and functions for convenience and portability.
169 @item
170 Each included symbol must have the prefix @code{__@var{arch}_}, such as
171 @code{__ppc_get_timebase}.
172 @end itemize
175 The easiest way to provide a header file is to add it to the
176 @code{sysdep_headers} variable.  For example, the combination of
177 Linux-specific header files on PowerPC could be provided like this:
179 @smallexample
180 sysdep_headers += sys/platform/ppc.h
181 @end smallexample
183 Then ensure that you have added a @file{sys/platform/ppc.h}
184 header file in the machine-specific directory, e.g.,
185 @file{sysdeps/powerpc/sys/platform/ppc.h}.
188 @node Source Fortification
189 @appendixsec Fortification of function calls
191 This section contains implementation details of @theglibc{} and may not
192 remain stable across releases.
194 The @code{_FORTIFY_SOURCE} macro may be defined by users to control
195 hardening of calls into some functions in @theglibc{}.  The definition
196 should be at the top of the source file before any headers are included
197 or at the pre-processor commandline using the @code{-D} switch.  The
198 hardening primarily focuses on accesses to buffers passed to the
199 functions but may also include checks for validity of other inputs to
200 the functions.
202 When the @code{_FORTIFY_SOURCE} macro is defined, it enables code that
203 validates inputs passed to some functions in @theglibc to determine if
204 they are safe.  If the compiler is unable to determine that the inputs
205 to the function call are safe, the call may be replaced by a call to its
206 hardened variant that does additional safety checks at runtime.  Some
207 hardened variants need the size of the buffer to perform access
208 validation and this is provided by the @code{__builtin_object_size} or
209 the @code{__builtin_dynamic_object_size} builtin functions.
210 @code{_FORTIFY_SOURCE} also enables additional compile time diagnostics,
211 such as unchecked return values from some functions, to encourage
212 developers to add error checking for those functions.
214 At runtime, if any of those safety checks fail, the program will
215 terminate with a @code{SIGABRT} signal.  @code{_FORTIFY_SOURCE} may be
216 defined to one of the following values:
218 @itemize @bullet
219 @item @math{1}: This enables buffer bounds checking using the value
220 returned by the @code{__builtin_object_size} compiler builtin function.
221 If the function returns @code{(size_t) -1}, the function call is left
222 untouched.  Additionally, this level also enables validation of flags to
223 the @code{open}, @code{open64}, @code{openat} and @code{openat64}
224 functions.
226 @item @math{2}: This behaves like @math{1}, with the addition of some
227 checks that may trap code that is conforming but unsafe, e.g. accepting
228 @code{%n} only in read-only format strings.
230 @item @math{3}: This enables buffer bounds checking using the value
231 returned by the @code{__builtin_dynamic_object_size} compiler builtin
232 function.  If the function returns @code{(size_t) -1}, the function call
233 is left untouched.  Fortification at this level may have a impact on
234 program performance if the function call that is fortified is frequently
235 encountered and the size expression returned by
236 @code{__builtin_dynamic_object_size} is complex.
237 @end itemize
239 In general, the fortified variants of the function calls use the name of
240 the function with a @code{__} prefix and a @code{_chk} suffix.  There
241 are some exceptions, e.g. the @code{printf} family of functions where,
242 depending on the architecture, one may also see fortified variants have
243 the @code{_chkieee128} suffix or the @code{__nldbl___} prefix to their
244 names.
246 Another exception is the @code{open} family of functions, where their
247 fortified replacements have the @code{__} prefix and a @code{_2} suffix.
248 The @code{FD_SET}, @code{FD_CLR} and @code{FD_ISSET} macros use the
249 @code{__fdelt_chk} function on fortification.
251 The following functions and macros are fortified in @theglibc{}:
252 @c Generated using the following command:
253 @c find . -name Versions | xargs grep -e "_chk;" -e "_2;" |
254 @c   cut -d ':' -f 2 | sed 's/;/\n/g' | sed 's/ *//g' | grep -v "^$" |
255 @c   sort -u | grep ^__ |
256 @c   grep -v -e ieee128 -e __nldbl -e align_cpy -e "fdelt_warn" |
257 @c   sed 's/__fdelt_chk/@item @code{FD_SET}\n\n@item @code{FD_CLR}\n\n@item @code{FD_ISSET}\n/' |
258 @c   sed 's/__\(.*\)_\(chk\|2\)/@item @code{\1}\n/'
260 @itemize @bullet
262 @item @code{asprintf}
264 @item @code{confstr}
266 @item @code{dprintf}
268 @item @code{explicit_bzero}
270 @item @code{FD_SET}
272 @item @code{FD_CLR}
274 @item @code{FD_ISSET}
276 @item @code{fgets}
278 @item @code{fgets_unlocked}
280 @item @code{fgetws}
282 @item @code{fgetws_unlocked}
284 @item @code{fprintf}
286 @item @code{fread}
288 @item @code{fread_unlocked}
290 @item @code{fwprintf}
292 @item @code{getcwd}
294 @item @code{getdomainname}
296 @item @code{getgroups}
298 @item @code{gethostname}
300 @item @code{getlogin_r}
302 @item @code{gets}
304 @item @code{getwd}
306 @item @code{longjmp}
308 @item @code{mbsnrtowcs}
310 @item @code{mbsrtowcs}
312 @item @code{mbstowcs}
314 @item @code{memcpy}
316 @item @code{memmove}
318 @item @code{mempcpy}
320 @item @code{memset}
322 @item @code{mq_open}
324 @item @code{obstack_printf}
326 @item @code{obstack_vprintf}
328 @item @code{open}
330 @item @code{open64}
332 @item @code{openat}
334 @item @code{openat64}
336 @item @code{poll}
338 @item @code{ppoll64}
340 @item @code{ppoll}
342 @item @code{pread64}
344 @item @code{pread}
346 @item @code{printf}
348 @item @code{ptsname_r}
350 @item @code{read}
352 @item @code{readlinkat}
354 @item @code{readlink}
356 @item @code{realpath}
358 @item @code{recv}
360 @item @code{recvfrom}
362 @item @code{snprintf}
364 @item @code{sprintf}
366 @item @code{stpcpy}
368 @item @code{stpncpy}
370 @item @code{strcat}
372 @item @code{strcpy}
374 @item @code{strncat}
376 @item @code{strncpy}
378 @item @code{swprintf}
380 @item @code{syslog}
382 @item @code{ttyname_r}
384 @item @code{vasprintf}
386 @item @code{vdprintf}
388 @item @code{vfprintf}
390 @item @code{vfwprintf}
392 @item @code{vprintf}
394 @item @code{vsnprintf}
396 @item @code{vsprintf}
398 @item @code{vswprintf}
400 @item @code{vsyslog}
402 @item @code{vwprintf}
404 @item @code{wcpcpy}
406 @item @code{wcpncpy}
408 @item @code{wcrtomb}
410 @item @code{wcscat}
412 @item @code{wcscpy}
414 @item @code{wcsncat}
416 @item @code{wcsncpy}
418 @item @code{wcsnrtombs}
420 @item @code{wcsrtombs}
422 @item @code{wcstombs}
424 @item @code{wctomb}
426 @item @code{wmemcpy}
428 @item @code{wmemmove}
430 @item @code{wmempcpy}
432 @item @code{wmemset}
434 @item @code{wprintf}
436 @end itemize
439 @node Symbol handling
440 @appendixsec Symbol handling in the GNU C Library
442 @menu
443 * 64-bit time symbol handling :: How to handle 64-bit time related
444                                     symbols in the GNU C Library.
445 @end menu
447 @node 64-bit time symbol handling
448 @appendixsubsec 64-bit time symbol handling in the GNU C Library
450 With respect to time handling, @glibcadj{} configurations fall in two
451 classes depending on the value of @code{__TIMESIZE}:
453 @table @code
455 @item @code{__TIMESIZE == 32}
457 These @dfn{dual-time} configurations have both 32-bit and 64-bit time
458 support.  32-bit time support provides type @code{time_t} and cannot
459 handle dates beyond @dfn{Y2038}.  64-bit time support provides type
460 @code{__time64_t} and can handle dates beyond @dfn{Y2038}.
462 In these configurations, time-related types have two declarations,
463 a 64-bit one, and a 32-bit one; and time-related functions generally
464 have two definitions: a 64-bit one, and a 32-bit one which is a wrapper
465 around the former.  Therefore, for every @code{time_t}-related symbol,
466 there is a corresponding @code{__time64_t}-related symbol, the name of
467 which is usually the 32-bit symbol's name with @code{__} (a double
468 underscore) prepended and @code{64} appended.  For instance, the
469 64-bit-time counterpart of @code{clock_gettime} is
470 @code{__clock_gettime64}.
472 @item @code{__TIMESIZE == 64}
474 These @dfn{single-time} configurations only have a 64-bit @code{time_t}
475 and related functions, which can handle dates beyond 2038-01-19
476 03:14:07 (aka @dfn{Y2038}).
478 In these configurations, time-related types only have a 64-bit
479 declaration; and time-related functions only have one 64-bit definition.
480 However, for every @code{time_t}-related symbol, there is a
481 corresponding @code{__time64_t}-related macro, the name of which is
482 derived as in the dual-time configuration case, and which expands to
483 the symbol's name.  For instance, the macro @code{__clock_gettime64}
484 expands to @code{clock_gettime}.
486 These macros are purely internal to @theglibc{} and exist only so that
487 a single definition of the 64-bit time functions can be used on both
488 single-time and dual-time configurations, and so that glibc code can
489 freely call the 64-bit functions internally in all configurations.
491 @end table
493 @c The following paragraph should be removed once external interfaces
494 @c get support for both time sizes.
496 Note: at this point, 64-bit time support in dual-time configurations is
497 work-in-progress, so for these configurations, the public API only makes
498 the 32-bit time support available.  In a later change, the public API
499 will allow user code to choose the time size for a given compilation
500 unit.
502 64-bit variants of time-related types or functions are defined for all
503 configurations and use 64-bit-time symbol names (for dual-time
504 configurations) or macros (for single-time configurations).
506 32-bit variants of time-related types or functions are defined only for
507 dual-time configurations.
509 Here is an example with @code{localtime}:
511 Function @code{localtime} is declared in @file{time/time.h} as
512 @smallexample
513 extern struct tm *localtime (const time_t *__timer) __THROW;
514 libc_hidden_proto (localtime)
515 @end smallexample
517 For single-time configurations, @code{__localtime64} is a macro which
518 evaluates to @code{localtime}; for dual-time configurations,
519 @code{__localtime64} is a function similar to @code{localtime} except
520 it uses Y2038-proof types:
521 @smallexample
522 #if __TIMESIZE == 64
523 # define __localtime64 localtime
524 #else
525 extern struct tm *__localtime64 (const __time64_t *__timer) __THROW;
526 libc_hidden_proto (__localtime64)
527 #endif
528 @end smallexample
530 (note: type @code{time_t} is replaced with @code{__time64_t} because
531 @code{time_t} is not Y2038-proof, but @code{struct tm} is not
532 replaced because it is already Y2038-proof.)
534 The 64-bit-time implementation of @code{localtime} is written as follows
535 and is compiled for both dual-time and single-time configuration classes.
537 @smallexample
538 struct tm *
539 __localtime64 (const __time64_t *t)
541   return __tz_convert (*t, 1, &_tmbuf);
543 libc_hidden_def (__localtime64)
544 @end smallexample
546 The 32-bit-time implementation is a wrapper and is only compiled for
547 dual-time configurations:
549 @smallexample
550 #if __TIMESIZE != 64
552 struct tm *
553 localtime (const time_t *t)
555   __time64_t t64 = *t;
556   return __localtime64 (&t64);
558 libc_hidden_def (localtime)
560 #endif
561 @end smallexample
563 @node Porting
564 @appendixsec Porting @theglibc{}
566 @Theglibc{} is written to be easily portable to a variety of
567 machines and operating systems.  Machine- and operating system-dependent
568 functions are well separated to make it easy to add implementations for
569 new machines or operating systems.  This section describes the layout of
570 the library source tree and explains the mechanisms used to select
571 machine-dependent code to use.
573 All the machine-dependent and operating system-dependent files in the
574 library are in the subdirectory @file{sysdeps} under the top-level
575 library source directory.  This directory contains a hierarchy of
576 subdirectories (@pxref{Hierarchy Conventions}).
578 Each subdirectory of @file{sysdeps} contains source files for a
579 particular machine or operating system, or for a class of machine or
580 operating system (for example, systems by a particular vendor, or all
581 machines that use IEEE 754 floating-point format).  A configuration
582 specifies an ordered list of these subdirectories.  Each subdirectory
583 implicitly appends its parent directory to the list.  For example,
584 specifying the list @file{unix/bsd/vax} is equivalent to specifying the
585 list @file{unix/bsd/vax unix/bsd unix}.  A subdirectory can also specify
586 that it implies other subdirectories which are not directly above it in
587 the directory hierarchy.  If the file @file{Implies} exists in a
588 subdirectory, it lists other subdirectories of @file{sysdeps} which are
589 appended to the list, appearing after the subdirectory containing the
590 @file{Implies} file.  Lines in an @file{Implies} file that begin with a
591 @samp{#} character are ignored as comments.  For example,
592 @file{unix/bsd/Implies} contains:
593 @smallexample
594 # BSD has Internet-related things.
595 unix/inet
596 @end smallexample
597 @noindent
598 and @file{unix/Implies} contains:
599 @need 300
600 @smallexample
601 posix
602 @end smallexample
604 @noindent
605 So the final list is @file{unix/bsd/vax unix/bsd unix/inet unix posix}.
607 @file{sysdeps} has a ``special'' subdirectory called @file{generic}.  It
608 is always implicitly appended to the list of subdirectories, so you
609 needn't put it in an @file{Implies} file, and you should not create any
610 subdirectories under it intended to be new specific categories.
611 @file{generic} serves two purposes.  First, the makefiles do not bother
612 to look for a system-dependent version of a file that's not in
613 @file{generic}.  This means that any system-dependent source file must
614 have an analogue in @file{generic}, even if the routines defined by that
615 file are not implemented on other platforms.  Second, the @file{generic}
616 version of a system-dependent file is used if the makefiles do not find
617 a version specific to the system you're compiling for.
619 If it is possible to implement the routines in a @file{generic} file in
620 machine-independent C, using only other machine-independent functions in
621 the C library, then you should do so.  Otherwise, make them stubs.  A
622 @dfn{stub} function is a function which cannot be implemented on a
623 particular machine or operating system.  Stub functions always return an
624 error, and set @code{errno} to @code{ENOSYS} (Function not implemented).
625 @xref{Error Reporting}.  If you define a stub function, you must place
626 the statement @code{stub_warning(@var{function})}, where @var{function}
627 is the name of your function, after its definition.  This causes the
628 function to be listed in the installed @code{<gnu/stubs.h>}, and
629 makes GNU ld warn when the function is used.
631 Some rare functions are only useful on specific systems and aren't
632 defined at all on others; these do not appear anywhere in the
633 system-independent source code or makefiles (including the
634 @file{generic} directory), only in the system-dependent @file{Makefile}
635 in the specific system's subdirectory.
637 If you come across a file that is in one of the main source directories
638 (@file{string}, @file{stdio}, etc.), and you want to write a machine- or
639 operating system-dependent version of it, move the file into
640 @file{sysdeps/generic} and write your new implementation in the
641 appropriate system-specific subdirectory.  Note that if a file is to be
642 system-dependent, it @strong{must not} appear in one of the main source
643 directories.
645 There are a few special files that may exist in each subdirectory of
646 @file{sysdeps}:
648 @comment Blank lines after items make the table look better.
649 @table @file
650 @item Makefile
652 A makefile for this machine or operating system, or class of machine or
653 operating system.  This file is included by the library makefile
654 @file{Makerules}, which is used by the top-level makefile and the
655 subdirectory makefiles.  It can change the variables set in the
656 including makefile or add new rules.  It can use GNU @code{make}
657 conditional directives based on the variable @samp{subdir} (see above) to
658 select different sets of variables and rules for different sections of
659 the library.  It can also set the @code{make} variable
660 @samp{sysdep-routines}, to specify extra modules to be included in the
661 library.  You should use @samp{sysdep-routines} rather than adding
662 modules to @samp{routines} because the latter is used in determining
663 what to distribute for each subdirectory of the main source tree.
665 Each makefile in a subdirectory in the ordered list of subdirectories to
666 be searched is included in order.  Since several system-dependent
667 makefiles may be included, each should append to @samp{sysdep-routines}
668 rather than simply setting it:
670 @smallexample
671 sysdep-routines := $(sysdep-routines) foo bar
672 @end smallexample
674 @need 1000
675 @item Subdirs
677 This file contains the names of new whole subdirectories under the
678 top-level library source tree that should be included for this system.
679 These subdirectories are treated just like the system-independent
680 subdirectories in the library source tree, such as @file{stdio} and
681 @file{math}.
683 Use this when there are completely new sets of functions and header
684 files that should go into the library for the system this subdirectory
685 of @file{sysdeps} implements.  For example,
686 @file{sysdeps/unix/inet/Subdirs} contains @file{inet}; the @file{inet}
687 directory contains various network-oriented operations which only make
688 sense to put in the library on systems that support the Internet.
690 @item configure
692 This file is a shell script fragment to be run at configuration time.
693 The top-level @file{configure} script uses the shell @code{.} command to
694 read the @file{configure} file in each system-dependent directory
695 chosen, in order.  The @file{configure} files are often generated from
696 @file{configure.ac} files using Autoconf.
698 A system-dependent @file{configure} script will usually add things to
699 the shell variables @samp{DEFS} and @samp{config_vars}; see the
700 top-level @file{configure} script for details.  The script can check for
701 @w{@samp{--with-@var{package}}} options that were passed to the
702 top-level @file{configure}.  For an option
703 @w{@samp{--with-@var{package}=@var{value}}} @file{configure} sets the
704 shell variable @w{@samp{with_@var{package}}} (with any dashes in
705 @var{package} converted to underscores) to @var{value}; if the option is
706 just @w{@samp{--with-@var{package}}} (no argument), then it sets
707 @w{@samp{with_@var{package}}} to @samp{yes}.
709 @item configure.ac
711 This file is an Autoconf input fragment to be processed into the file
712 @file{configure} in this subdirectory.  @xref{Introduction,,,
713 autoconf.info, Autoconf: Generating Automatic Configuration Scripts},
714 for a description of Autoconf.  You should write either @file{configure}
715 or @file{configure.ac}, but not both.  The first line of
716 @file{configure.ac} should invoke the @code{m4} macro
717 @samp{GLIBC_PROVIDES}.  This macro does several @code{AC_PROVIDE} calls
718 for Autoconf macros which are used by the top-level @file{configure}
719 script; without this, those macros might be invoked again unnecessarily
720 by Autoconf.
721 @end table
723 That is the general system for how system-dependencies are isolated.
724 @iftex
725 The next section explains how to decide what directories in
726 @file{sysdeps} to use.  @ref{Porting to Unix}, has some tips on porting
727 the library to Unix variants.
728 @end iftex
730 @menu
731 * Hierarchy Conventions::       The layout of the @file{sysdeps} hierarchy.
732 * Porting to Unix::             Porting the library to an average
733                                    Unix-like system.
734 @end menu
736 @node Hierarchy Conventions
737 @appendixsubsec Layout of the @file{sysdeps} Directory Hierarchy
739 A GNU configuration name has three parts: the CPU type, the
740 manufacturer's name, and the operating system.  @file{configure} uses
741 these to pick the list of system-dependent directories to look for.  If
742 the @samp{--nfp} option is @emph{not} passed to @file{configure}, the
743 directory @file{@var{machine}/fpu} is also used.  The operating system
744 often has a @dfn{base operating system}; for example, if the operating
745 system is @samp{Linux}, the base operating system is @samp{unix/sysv}.
746 The algorithm used to pick the list of directories is simple:
747 @file{configure} makes a list of the base operating system,
748 manufacturer, CPU type, and operating system, in that order.  It then
749 concatenates all these together with slashes in between, to produce a
750 directory name; for example, the configuration @w{@samp{i686-linux-gnu}}
751 results in @file{unix/sysv/linux/i386/i686}.  @file{configure} then
752 tries removing each element of the list in turn, so
753 @file{unix/sysv/linux} and @file{unix/sysv} are also tried, among others.
754 Since the precise version number of the operating system is often not
755 important, and it would be very inconvenient, for example, to have
756 identical @file{irix6.2} and @file{irix6.3} directories,
757 @file{configure} tries successively less specific operating system names
758 by removing trailing suffixes starting with a period.
760 As an example, here is the complete list of directories that would be
761 tried for the configuration @w{@samp{i686-linux-gnu}}:
763 @smallexample
764 sysdeps/i386/elf
765 sysdeps/unix/sysv/linux/i386
766 sysdeps/unix/sysv/linux
767 sysdeps/gnu
768 sysdeps/unix/common
769 sysdeps/unix/mman
770 sysdeps/unix/inet
771 sysdeps/unix/sysv/i386/i686
772 sysdeps/unix/sysv/i386
773 sysdeps/unix/sysv
774 sysdeps/unix/i386
775 sysdeps/unix
776 sysdeps/posix
777 sysdeps/i386/i686
778 sysdeps/i386/i486
779 sysdeps/libm-i387/i686
780 sysdeps/i386/fpu
781 sysdeps/libm-i387
782 sysdeps/i386
783 sysdeps/wordsize-32
784 sysdeps/ieee754
785 sysdeps/libm-ieee754
786 sysdeps/generic
787 @end smallexample
789 Different machine architectures are conventionally subdirectories at the
790 top level of the @file{sysdeps} directory tree.  For example,
791 @w{@file{sysdeps/sparc}} and @w{@file{sysdeps/m68k}}.  These contain
792 files specific to those machine architectures, but not specific to any
793 particular operating system.  There might be subdirectories for
794 specializations of those architectures, such as
795 @w{@file{sysdeps/m68k/68020}}.  Code which is specific to the
796 floating-point coprocessor used with a particular machine should go in
797 @w{@file{sysdeps/@var{machine}/fpu}}.
799 There are a few directories at the top level of the @file{sysdeps}
800 hierarchy that are not for particular machine architectures.
802 @table @file
803 @item generic
804 As described above (@pxref{Porting}), this is the subdirectory
805 that every configuration implicitly uses after all others.
807 @item ieee754
808 This directory is for code using the IEEE 754 floating-point format,
809 where the C type @code{float} is IEEE 754 single-precision format, and
810 @code{double} is IEEE 754 double-precision format.  Usually this
811 directory is referred to in the @file{Implies} file in a machine
812 architecture-specific directory, such as @file{m68k/Implies}.
814 @item libm-ieee754
815 This directory contains an implementation of a mathematical library
816 usable on platforms which use @w{IEEE 754} conformant floating-point
817 arithmetic.
819 @item libm-i387
820 This is a special case.  Ideally the code should be in
821 @file{sysdeps/i386/fpu} but for various reasons it is kept aside.
823 @item posix
824 This directory contains implementations of things in the library in
825 terms of @sc{POSIX.1} functions.  This includes some of the @sc{POSIX.1}
826 functions themselves.  Of course, @sc{POSIX.1} cannot be completely
827 implemented in terms of itself, so a configuration using just
828 @file{posix} cannot be complete.
830 @item unix
831 This is the directory for Unix-like things.  @xref{Porting to Unix}.
832 @file{unix} implies @file{posix}.  There are some special-purpose
833 subdirectories of @file{unix}:
835 @table @file
836 @item unix/common
837 This directory is for things common to both BSD and System V release 4.
838 Both @file{unix/bsd} and @file{unix/sysv/sysv4} imply @file{unix/common}.
840 @item unix/inet
841 This directory is for @code{socket} and related functions on Unix systems.
842 @file{unix/inet/Subdirs} enables the @file{inet} top-level subdirectory.
843 @file{unix/common} implies @file{unix/inet}.
844 @end table
846 @item mach
847 This is the directory for things based on the Mach microkernel from CMU
848 (including @gnuhurdsystems{}).  Other basic operating systems
849 (VMS, for example) would have their own directories at the top level of
850 the @file{sysdeps} hierarchy, parallel to @file{unix} and @file{mach}.
851 @end table
853 @node Porting to Unix
854 @appendixsubsec Porting @theglibc{} to Unix Systems
856 Most Unix systems are fundamentally very similar.  There are variations
857 between different machines, and variations in what facilities are
858 provided by the kernel.  But the interface to the operating system
859 facilities is, for the most part, pretty uniform and simple.
861 The code for Unix systems is in the directory @file{unix}, at the top
862 level of the @file{sysdeps} hierarchy.  This directory contains
863 subdirectories (and subdirectory trees) for various Unix variants.
865 The functions which are system calls in most Unix systems are
866 implemented in assembly code, which is generated automatically from
867 specifications in files named @file{syscalls.list}.  There are several
868 such files, one in @file{sysdeps/unix} and others in its subdirectories.
869 Some special system calls are implemented in files that are named with a
870 suffix of @samp{.S}; for example, @file{_exit.S}.  Files ending in
871 @samp{.S} are run through the C preprocessor before being fed to the
872 assembler.
874 These files all use a set of macros that should be defined in
875 @file{sysdep.h}.  The @file{sysdep.h} file in @file{sysdeps/unix}
876 partially defines them; a @file{sysdep.h} file in another directory must
877 finish defining them for the particular machine and operating system
878 variant.  See @file{sysdeps/unix/sysdep.h} and the machine-specific
879 @file{sysdep.h} implementations to see what these macros are and what
880 they should do.
882 The system-specific makefile for the @file{unix} directory
883 (@file{sysdeps/unix/Makefile}) gives rules to generate several files
884 from the Unix system you are building the library on (which is assumed
885 to be the target system you are building the library @emph{for}).  All
886 the generated files are put in the directory where the object files are
887 kept; they should not affect the source tree itself.  The files
888 generated are @file{ioctls.h}, @file{errnos.h}, @file{sys/param.h}, and
889 @file{errlist.c} (for the @file{stdio} section of the library).
891 @ignore
892 @c This section might be a good idea if it is finished,
893 @c but there's no point including it as it stands. --rms
894 @c @appendixsec Compatibility with Traditional C
896 @c ??? This section is really short now.  Want to keep it? --roland
898 @c It's not anymore true.  glibc 2.1 cannot be used with K&R compilers.
899 @c --drepper
901 Although @theglibc{} implements the @w{ISO C} library facilities, you
902 @emph{can} use @theglibc{} with traditional, ``pre-ISO'' C
903 compilers.  However, you need to be careful because the content and
904 organization of the @glibcadj{} header files differs from that of
905 traditional C implementations.  This means you may need to make changes
906 to your program in order to get it to compile.
907 @end ignore