1 \input texinfo @c -*-texinfo-*-
3 @setfilename standards.info
4 @settitle GNU Coding Standards
5 @c This date is automagically updated when you save this file:
6 @set lastupdate November 13, 2024
9 @dircategory GNU organization
11 * Standards: (standards). GNU coding standards.
14 @c @setchapternewpage odd
15 @setchapternewpage off
17 @c Put everything in one index (arbitrarily chosen to be the concept index).
23 @c This is used by a cross ref in make-stds.texi
27 The GNU coding standards, last updated @value{lastupdate}.
29 Copyright @copyright{} 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
30 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
31 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020 Free
32 Software Foundation, Inc.
34 Permission is granted to copy, distribute and/or modify this document
35 under the terms of the GNU Free Documentation License, Version 1.3 or
36 any later version published by the Free Software Foundation; with no
37 Invariant Sections, no Front-Cover Texts, and no Back-Cover
38 Texts. A copy of the license is included in the section entitled
39 ``GNU Free Documentation License''.
43 @title GNU Coding Standards
44 @author Richard Stallman, et al.
45 @author last updated @value{lastupdate}
47 @vskip 0pt plus 1filll
55 @top GNU Coding Standards
61 * Preface:: About the GNU Coding Standards.
62 * Legal Issues:: Keeping free software free.
63 * Design Advice:: General program design.
64 * Program Behavior:: Program behavior for all programs
65 * Writing C:: Making the best use of C.
66 * Documentation:: Documenting programs.
67 * Managing Releases:: The release process.
68 * References:: Mentioning non-free software or documentation.
69 * GNU Free Documentation License:: Copying and sharing this manual.
75 @chapter About the GNU Coding Standards
77 The GNU Coding Standards were written by Richard Stallman and other GNU
78 Project volunteers. Their purpose is to make the GNU system clean,
79 consistent, and easy to install. This document can also be read as a
80 guide to writing portable, robust and reliable programs. It focuses on
81 programs written in C, but many of the rules and principles are useful
82 even if you write in another programming language. The rules often
83 state reasons for writing in a certain way.
85 @cindex where to obtain @code{standards.texi}
86 @cindex downloading this manual
87 If you did not obtain this file directly from the GNU project and
88 recently, please check for a newer version. You can get the GNU
89 Coding Standards from the GNU web server in many
90 different formats, including the Texinfo source, PDF, HTML, DVI, plain
91 text, and more, at: @uref{https://www.gnu.org/prep/standards/}.
93 If you are maintaining an official GNU package, in addition to this
94 document, please read and follow the GNU maintainer information
95 (@pxref{Top, , Contents, maintain, Information for Maintainers of GNU
98 @cindex @code{gnustandards-commit@@gnu.org} mailing list
99 If you want to receive diffs for every change to these GNU documents,
100 join the mailing list @code{gnustandards-commit@@gnu.org}, via the web
102 @url{https://lists.gnu.org/mailman/listinfo/gnustandards-commit}.
103 Archives are also available there.
105 @cindex @code{bug-standards@@gnu.org} email address
106 @cindex Savannah repository for gnustandards
107 @cindex gnustandards project repository
108 Please send corrections or suggestions for this document to
109 @email{bug-standards@@gnu.org}. If you make a suggestion, please
110 include a suggested new wording for it, to help us consider the
111 suggestion efficiently. We prefer a context diff to the Texinfo
112 source, but if that's difficult for you, you can make a context diff
113 for some other version of this document, or propose it in any way that
114 makes it clear. The source repository for this document can be found
115 at @url{https://savannah.gnu.org/projects/gnustandards}.
117 These standards cover the minimum of what is important when writing a
118 GNU package. Likely, the need for additional standards will come up.
119 Sometimes, you might suggest that such standards be added to this
120 document. If you think your standards would be generally useful, please
123 You should also set standards for your package on many questions not
124 addressed or not firmly specified here. The most important point is to
125 be self-consistent---try to stick to the conventions you pick, and try
126 to document them as much as possible. That way, your program will be
127 more maintainable by others.
129 The GNU Hello program serves as an example of how to follow the GNU
130 coding standards for a trivial program.
131 @uref{https://www.gnu.org/software/hello/hello.html}.
133 This release of the GNU Coding Standards was last updated
138 @chapter Keeping Free Software Free
139 @cindex legal aspects
141 This chapter discusses how you can make sure that GNU software
142 avoids legal difficulties, and other related issues.
145 * Reading Non-Free Code:: Referring to proprietary programs.
146 * Contributions:: Accepting contributions.
147 * Trademarks:: How we deal with trademark issues.
150 @node Reading Non-Free Code
151 @section Referring to Proprietary Programs
152 @cindex proprietary programs
153 @cindex avoiding proprietary code
155 Don't in any circumstances refer to Unix source code for or during
156 your work on GNU! (Or to any other proprietary programs.)
158 If you have a vague recollection of the internals of a Unix program,
159 this does not absolutely mean you can't write an imitation of it, but
160 do try to organize the imitation internally along different lines,
161 because this is likely to make the details of the Unix version
162 irrelevant and dissimilar to your results.
164 For example, Unix utilities were generally optimized to minimize
165 memory use; if you go for speed instead, your program will be very
166 different. You could keep the entire input file in memory and scan it
167 there instead of using stdio. Use a smarter algorithm discovered more
168 recently than the Unix program. Eliminate use of temporary files. Do
169 it in one pass instead of two (we did this in the assembler).
171 Or, on the contrary, emphasize simplicity instead of speed. For some
172 applications, the speed of today's computers makes simpler algorithms
175 Or go for generality. For example, Unix programs often have static
176 tables or fixed-size strings, which make for arbitrary limits; use
177 dynamic allocation instead. Make sure your program handles NULs and
178 other funny characters in the input files. Add a programming language
179 for extensibility and write part of the program in that language.
181 Or turn some parts of the program into independently usable libraries.
182 Or use a simple garbage collector instead of tracking precisely when
183 to free memory, or use a new GNU facility such as obstacks.
187 @section Accepting Contributions
189 @cindex accepting contributions
191 If the program you are working on is copyrighted by the Free Software
192 Foundation, then when someone else sends you a piece of code to add to
193 the program, we need legal papers to use it---just as we asked you to
194 sign papers initially. @emph{Each} person who makes a nontrivial
195 contribution to a program must sign some sort of legal papers in order
196 for us to have clear title to the program; the main author alone is not
199 So, before adding in any contributions from other people, please tell
200 us, so we can arrange to get the papers. Then wait until we tell you
201 that we have received the signed papers, before you actually use the
204 This applies both before you release the program and afterward. If
205 you receive diffs to fix a bug, and they make significant changes, we
206 need legal papers for that change.
208 This also applies to comments and documentation files. For copyright
209 law, comments and code are just text. Copyright applies to all kinds of
210 text, so we need legal papers for all kinds.
212 We know it is frustrating to ask for legal papers; it's frustrating for
213 us as well. But if you don't wait, you are going out on a limb---for
214 example, what if the contributor's employer won't sign a disclaimer?
215 You might have to take that code out again!
217 You don't need papers for changes of a few lines here or there, since
218 they are not significant for copyright purposes. Also, you don't need
219 papers if all you get from the suggestion is some ideas, not actual code
220 which you use. For example, if someone sent you one implementation, but
221 you write a different implementation of the same idea, you don't need to
224 The very worst thing is if you forget to tell us about the other
225 contributor. We could be very embarrassed in court some day as a
228 We have more detailed advice for maintainers of GNU packages. If you
229 have reached the stage of maintaining a GNU program (whether released
230 or not), please take a look: @pxref{Legal Matters,,, maintain,
231 Information for GNU Maintainers}.
238 Please do not include any trademark acknowledgments in GNU software
239 packages or documentation.
241 Trademark acknowledgments are the statements that such-and-such is a
242 trademark of so-and-so. The GNU Project has no objection to the basic
243 idea of trademarks, but these acknowledgments feel like kowtowing,
244 and there is no legal requirement for them, so we don't use them.
246 What is legally required, as regards other people's trademarks, is to
247 avoid using them in ways which a reader might reasonably understand as
248 naming or labeling our own programs or activities. For example, since
249 ``Objective C'' is (or at least was) a trademark, we made sure to say
250 that we provide a ``compiler for the Objective C language'' rather
251 than an ``Objective C compiler''. The latter would have been meant as
252 a shorter way of saying the former, but it does not explicitly state
253 the relationship, so it could be misinterpreted as using ``Objective
254 C'' as a label for the compiler rather than for the language.
256 Please don't use ``win'' as an abbreviation for Microsoft Windows in
257 GNU software or documentation. In hacker terminology, calling
258 something a ``win'' is a form of praise. You're free to praise
259 Microsoft Windows on your own if you want, but please don't do so in
260 GNU packages. Please write ``Windows'' in full, or abbreviate it to
261 ``w.'' @xref{System Portability}.
264 @chapter General Program Design
265 @cindex program design
267 This chapter discusses some of the issues you should take into
268 account when designing your program.
270 @c Standard or ANSI C
272 @c In 1989 the American National Standards Institute (ANSI) standardized
273 @c C as standard X3.159-1989. In December of that year the
274 @c International Standards Organization ISO adopted the ANSI C standard
275 @c making minor changes. In 1990 ANSI then re-adopted ISO standard
276 @c C. This version of C is known as either ANSI C or Standard C.
278 @c A major revision of the C Standard appeared in 1999.
281 * Source Language:: Which languages to use.
282 * Compatibility:: Compatibility with other implementations.
283 * Using Extensions:: Using non-standard features.
284 * Standard C:: Using standard C features.
285 * Conditional Compilation:: Compiling code only if a conditional is true.
288 @node Source Language
289 @section Which Languages to Use
290 @cindex programming languages
292 When you want to use a language that gets compiled and runs at high
293 speed, the best language to use is C@. C++ is ok too, but please don't
294 make heavy use of templates. So is Java, if you compile it.
296 When highest efficiency is not required, other languages commonly used
297 in the free software community, such as Lisp, Scheme, Python, Ruby, and
298 Java, are OK too. Scheme, as implemented by GNU@tie{}Guile, plays a
299 particular role in the GNU System: it is the preferred language to
300 extend programs written in C/C++, and also a fine language for a wide
301 range of applications. The more GNU components use Guile and Scheme,
302 the more users are able to extend and combine them (@pxref{The Emacs
303 Thesis,,, guile, GNU Guile Reference Manual}).
305 Many programs are designed to be extensible: they include an interpreter
306 for a language that is higher level than C@. Often much of the program
307 is written in that language, too. The Emacs editor pioneered this
311 @cindex GNOME and Guile
312 The standard extensibility interpreter for GNU software is Guile
313 (@uref{https://www.gnu.org/@/software/@/guile/}), which implements the
314 language Scheme (an especially clean and simple dialect of Lisp).
315 Guile also includes bindings for GTK+/GNOME, making it practical to
316 write modern GUI functionality within Guile. We don't reject programs
317 written in other ``scripting languages'' such as Perl and Python, but
318 using Guile is the path that will lead to overall consistency of the
323 @section Compatibility with Other Implementations
324 @cindex compatibility with C and POSIX standards
325 @cindex C compatibility
326 @cindex POSIX compatibility
328 With occasional exceptions, utility programs and libraries for GNU
329 should be upward compatible with those in Berkeley Unix, and upward
330 compatible with Standard C if Standard C specifies their
331 behavior, and upward compatible with POSIX if POSIX specifies
334 When these standards conflict, it is useful to offer compatibility
335 modes for each of them.
337 @cindex options for compatibility
338 Standard C and POSIX prohibit many kinds of extensions. Feel
339 free to make the extensions anyway, and include a @samp{--ansi},
340 @samp{--posix}, or @samp{--compatible} option to turn them off.
341 However, if the extension has a significant chance of breaking any real
342 programs or scripts, then it is not really upward compatible. So you
343 should try to redesign its interface to make it upward compatible.
345 @cindex @code{POSIXLY_CORRECT}, environment variable
346 Many GNU programs suppress extensions that conflict with POSIX if the
347 environment variable @code{POSIXLY_CORRECT} is defined (even if it is
348 defined with a null value). Please make your program recognize this
349 variable if appropriate.
351 When a feature is used only by users (not by programs or command
352 files), and it is done poorly in Unix, feel free to replace it
353 completely with something totally different and better. (For example,
354 @code{vi} is replaced with Emacs.) But it is nice to offer a compatible
355 feature as well. (There is a free @code{vi} clone, so we offer it.)
357 Additional useful features are welcome regardless of whether
358 there is any precedent for them.
360 @node Using Extensions
361 @section Using Non-standard Features
362 @cindex non-standard extensions
364 Many GNU facilities that already exist support a number of convenient
365 extensions over the comparable Unix facilities. Whether to use these
366 extensions in implementing your program is a difficult question.
368 On the one hand, using the extensions can make a cleaner program.
369 On the other hand, people will not be able to build the program
370 unless the other GNU tools are available. This might cause the
371 program to work on fewer kinds of machines.
373 With some extensions, it might be easy to provide both alternatives.
374 For example, you can define functions with a ``keyword'' @code{INLINE}
375 and define that as a macro to expand into either @code{inline} or
376 nothing, depending on the compiler.
378 In general, perhaps it is best not to use the extensions if you can
379 straightforwardly do without them, but to use the extensions if they
380 are a big improvement.
382 An exception to this rule are the large, established programs (such as
383 Emacs) which run on a great variety of systems. Using GNU extensions in
384 such programs would make many users unhappy, so we don't do that.
386 Another exception is for programs that are used as part of compilation:
387 anything that must be compiled with other compilers in order to
388 bootstrap the GNU compilation facilities. If these require the GNU
389 compiler, then no one can compile them without having them installed
390 already. That would be extremely troublesome in certain cases.
394 @cindex ANSI C standard
396 ISO C99 is widespread enough now that it is ok to use its
397 features in programs. There is one exception: do not ever use the
398 ``trigraph'' misfeature introduced by C89 and not removed until C23.
400 Not all features of recent Standard C are fully supported on all
401 platforms. If you aim to support compilation by compilers other than
402 GCC, you should generally not require newer Standard C features in
403 your programs, or else use them conditionally on whether the compiler
404 supports them. The same goes for GNU C extensions such as variable
407 If your program is only meant to compile with GCC, then you can use
408 these features if GCC supports them. Don't use features that GCC does
409 not support, except conditionally as a way to use equivalent features
410 to those that are used when compiling with GCC.
412 @cindex function prototypes
413 Before C89, functions needed to be written in the K&R style, like
424 with a separate declaration to specify the argument prototype:
430 Until the 2020s, that was the way to get the most portability to
431 different compilers. But not any more.
433 Nowadays, it is rare to find a C compiler which fails to support the
434 prototype style of function definition. It is more common to run into
435 a compiler that has dropped support for the old K&R style. Thus, to
436 maximize portability, write function definitions in the Standard C
439 You generally need a declaration for the function in addition to iss
440 definition, usually in a header file, to get the benefit of prototypes
441 in all the files where the function is called.
443 @node Conditional Compilation
444 @section Conditional Compilation
446 When supporting configuration options already known when building your
447 program we prefer using @code{if (... )} over conditional compilation,
448 as in the former case the compiler is able to perform more extensive
449 checking of all possible code paths.
451 For example, please write
471 A modern compiler such as GCC will generate exactly the same code in
472 both cases, and we have been using similar techniques with good success
473 in several projects. Of course, the former method assumes that
474 @code{HAS_FOO} is defined as either 0 or 1.
476 While this is not a silver bullet solving all portability problems,
477 and is not always appropriate, following this policy would have saved
478 GCC developers many hours, or even days, per year.
480 In the case of function-like macros like @code{REVERSIBLE_CC_MODE} in
481 GCC which cannot be simply used in @code{if (...)} statements, there is
482 an easy workaround. Simply introduce another macro
483 @code{HAS_REVERSIBLE_CC_MODE} as in the following example:
486 #ifdef REVERSIBLE_CC_MODE
487 #define HAS_REVERSIBLE_CC_MODE 1
489 #define HAS_REVERSIBLE_CC_MODE 0
493 @node Program Behavior
494 @chapter Program Behavior for All Programs
496 This chapter describes conventions for writing robust
497 software. It also describes general standards for error messages, the
498 command line interface, and how libraries should behave.
501 * Non-GNU Standards:: We consider standards such as POSIX;
502 we don't "obey" them.
503 * Semantics:: Writing robust programs.
504 * Libraries:: Library behavior.
505 * Errors:: Formatting error messages.
506 * User Interfaces:: Standards about interfaces generally.
507 * Finding Program Files:: How to find the program's executable
508 and other files that go with it.
509 * Graphical Interfaces:: Standards for graphical interfaces.
510 * Command-Line Interfaces:: Standards for command line interfaces.
511 * Dynamic Plug-In Interfaces:: Standards for dynamic plug-in interfaces.
512 * Option Table:: Table of long options.
513 * OID Allocations:: Table of OID slots for GNU.
514 * Memory Usage:: When and how to care about memory needs.
515 * File Usage:: Which files to use, and where.
518 @node Non-GNU Standards
519 @section Non-GNU Standards
521 The GNU Project regards standards published by other organizations as
522 suggestions, not orders. We consider those standards, but we do not
523 ``obey'' them. In developing a GNU program, you should implement
524 an outside standard's specifications when that makes the GNU system
525 better overall in an objective sense. When it doesn't, you shouldn't.
527 In most cases, following published standards is convenient for
528 users---it means that their programs or scripts will work more
529 portably. For instance, GCC implements nearly all the features of
530 Standard C as specified by that standard. C program developers would
531 be unhappy if it did not. And GNU utilities mostly follow
532 specifications of POSIX; shell script writers and users would be
533 unhappy if our programs were incompatible.
535 But we do not follow either of these specifications rigidly, and there
536 are specific points on which we decided not to follow them, so as to
537 make the GNU system better for users.
539 For instance, Standard C says that nearly all extensions to C are
540 prohibited. How silly! GCC implements many extensions, some of which
541 were later adopted as part of the standard. If you want these
542 constructs to give an error message as ``required'' by the standard,
543 you must specify @samp{--pedantic}, which was implemented only so that
544 we can say ``GCC is a 100% implementation of the standard'', not
545 because there is any reason to actually use it.
547 POSIX specifies that @samp{df} and @samp{du} must output sizes by
548 default in units of 512 bytes. What users want is units of 1k, so
549 that is what we do by default. If you want the ridiculous behavior
550 ``required'' by POSIX, you must set the environment variable
551 @samp{POSIXLY_CORRECT} (which was originally going to be named
552 @samp{POSIX_ME_HARDER}).
554 GNU utilities also depart from the letter of the POSIX specification
555 when they support long-named command-line options, and intermixing
556 of options with ordinary arguments. This minor incompatibility with
557 POSIX is never a problem in practice, and it is very useful.
559 In particular, don't reject a new feature, or remove an old one,
560 merely because a standard says it is ``forbidden'' or ``deprecated''.
564 @section Writing Robust Programs
566 @cindex arbitrary limits on data
567 Avoid arbitrary limits on the length or number of @emph{any} data
568 structure, including file names, lines, files, and symbols, by allocating
569 all data structures dynamically. In most Unix utilities, ``long lines
570 are silently truncated''. This is not acceptable in a GNU utility.
572 @cindex @code{NUL} characters
574 Utilities reading files should not drop NUL characters, or any other
575 nonprinting characters. Programs should work properly with multibyte
576 character encodings, such as UTF-8. You can use libiconv to deal with
577 a range of encodings.
579 @cindex error messages
580 Check every system call for an error return, unless you know you wish
581 to ignore errors. Include the system error text (from
582 @code{strerror}, or equivalent) in @emph{every} error message
583 resulting from a failing system call, as well as the name of the file
584 if any and the name of the utility. Just ``cannot open foo.c'' or
585 ``stat failed'' is not sufficient.
587 @cindex @code{malloc} return value
588 @cindex memory allocation failure
589 Check every call to @code{malloc} or @code{realloc} to see if it
590 returned @code{NULL}. Check @code{realloc} even if you are making the
591 block smaller; in a system that rounds block sizes to a power of 2,
592 @code{realloc} may get a different block if you ask for less space.
594 You must expect @code{free} to alter the contents of the block that was
595 freed. Anything you want to fetch from the block, you must fetch before
598 If @code{malloc} fails in a noninteractive program, make that a fatal
599 error. In an interactive program (one that reads commands from the
600 user), it is better to abort the command and return to the command
601 reader loop. This allows the user to kill other processes to free up
602 virtual memory, and then try the command again.
604 @cindex command-line arguments, decoding
605 Use @code{getopt_long} to decode arguments, unless the argument syntax
606 makes this unreasonable.
608 When static storage is to be written in during program execution, use
609 explicit C code to initialize it. This way, restarting the program
610 (without reloading it), or part of it, will reinitialize those
611 variables. Reserve C initialized declarations for data that will not
615 Try to avoid low-level interfaces to obscure Unix data structures (such
616 as file directories, utmp, or the layout of kernel memory), since these
617 are less likely to work compatibly. If you need to find all the files
618 in a directory, use @code{readdir} or some other high-level interface.
619 These are supported compatibly by GNU.
621 @cindex signal handling
622 The preferred signal handling facilities are the BSD variant of
623 @code{signal}, and the POSIX @code{sigaction} function; the
624 alternative USG @code{signal} interface is an inferior design.
626 Nowadays, using the POSIX signal functions may be the easiest way
627 to make a program portable. If you use @code{signal}, then on GNU/Linux
628 systems running GNU libc version 1, you should include
629 @file{bsd/signal.h} instead of @file{signal.h}, so as to get BSD
630 behavior. It is up to you whether to support systems where
631 @code{signal} has only the USG behavior, or give up on them.
633 @cindex impossible conditions
634 In error checks that detect ``impossible'' conditions, just abort.
635 There is usually no point in printing any message. These checks
636 indicate the existence of bugs. Whoever wants to fix the bugs will have
637 to read the source code and run a debugger. So explain the problem with
638 comments in the source. The relevant data will be in variables, which
639 are easy to examine with the debugger, so there is no point moving them
642 Do not use a count of errors as the exit status for a program.
643 @emph{That does not work}, because exit status values are limited to 8
644 bits (0 through 255). A single run of the program might have 256
645 errors; if you try to return 256 as the exit status, the parent process
646 will see 0 as the status, and it will appear that the program succeeded.
648 @cindex temporary files
649 @cindex @code{TMPDIR} environment variable
650 If you make temporary files, check the @code{TMPDIR} environment
651 variable; if that variable is defined, use the specified directory
652 instead of @file{/tmp}.
654 In addition, be aware that there is a possible security problem when
655 creating temporary files in world-writable directories. In C, you can
656 avoid this problem by creating temporary files in this manner:
659 fd = open (filename, O_WRONLY | O_CREAT | O_EXCL, 0600);
663 or by using the @code{mkstemps} function from Gnulib
664 (@pxref{mkstemps,,, gnulib, Gnulib}).
666 In bash, use @code{set -C} (long name @code{noclobber}) to avoid this
667 problem. In addition, the @code{mktemp} utility is a more general
668 solution for creating temporary files from shell scripts
669 (@pxref{mktemp invocation,,, coreutils, GNU Coreutils}).
673 @section Library Behavior
676 Try to make library functions reentrant. If they need to do dynamic
677 storage allocation, at least try to avoid any nonreentrancy aside from
678 that of @code{malloc} itself.
680 Here are certain name conventions for libraries, to avoid name
683 Choose a name prefix for the library, more than two characters long.
684 All external function and variable names should start with this
685 prefix. In addition, there should only be one of these in any given
686 library member. This usually means putting each one in a separate
689 An exception can be made when two external symbols are always used
690 together, so that no reasonable program could use one without the
691 other; then they can both go in the same file.
693 External symbols that are not documented entry points for the user
694 should have names beginning with @samp{_}. The @samp{_} should be
695 followed by the chosen name prefix for the library, to prevent
696 collisions with other libraries. These can go in the same files with
697 user entry points if you like.
699 Static functions and variables can be used as you like and need not
700 fit any naming convention.
703 @section Formatting Error Messages
704 @cindex formatting error messages
705 @cindex error messages, formatting
707 Error messages from compilers should look like this:
710 @var{sourcefile}:@var{lineno}: @var{message}
714 If you want to mention the column number, use one of these formats:
717 @var{sourcefile}:@var{lineno}:@var{column}: @var{message}
718 @var{sourcefile}:@var{lineno}.@var{column}: @var{message}
723 Line numbers should start from 1 at the beginning of the file, and
724 column numbers should start from 1 at the beginning of the line.
725 (Both of these conventions are chosen for compatibility.) Calculate
726 column numbers assuming that space and all ASCII printing characters
727 have equal width, and assuming tab stops every 8 columns. For
728 non-ASCII characters, Unicode character widths should be used when in
729 a UTF-8 locale; GNU libc and GNU gnulib provide suitable
730 @code{wcwidth} functions.
732 The error message can also give both the starting and ending positions
733 of the erroneous text. There are several formats so that you can
734 avoid redundant information such as a duplicate line number.
735 Here are the possible formats:
738 @var{sourcefile}:@var{line1}.@var{column1}-@var{line2}.@var{column2}: @var{message}
739 @var{sourcefile}:@var{line1}.@var{column1}-@var{column2}: @var{message}
740 @var{sourcefile}:@var{line1}-@var{line2}: @var{message}
744 When an error is spread over several files, you can use this format:
747 @var{file1}:@var{line1}.@var{column1}-@var{file2}:@var{line2}.@var{column2}: @var{message}
750 Error messages from other noninteractive programs should look like this:
753 @var{program}:@var{sourcefile}:@var{lineno}: @var{message}
757 when there is an appropriate source file, or like this:
760 @var{program}: @var{message}
764 when there is no relevant source file.
766 If you want to mention the column number, use this format:
769 @var{program}:@var{sourcefile}:@var{lineno}:@var{column}: @var{message}
772 In an interactive program (one that is reading commands from a
773 terminal), it is better not to include the program name in an error
774 message. The place to indicate which program is running is in the
775 prompt or with the screen layout. (When the same program runs with
776 input from a source other than a terminal, it is not interactive and
777 would do best to print error messages using the noninteractive style.)
779 The string @var{message} should not begin with a capital letter when
780 it follows a program name and/or file name, because that isn't the
781 beginning of a sentence. (The sentence conceptually starts at the
782 beginning of the line.) Also, it should not end with a period.
784 Error messages from interactive programs, and other messages such as
785 usage messages, should start with a capital letter. But they should not
788 @node User Interfaces
789 @section Standards for Interfaces Generally
791 @cindex program name and its behavior
792 @cindex behavior, dependent on program's name
793 Please don't make the behavior of a utility depend on the name used to
794 invoke it. It is useful sometimes to make a link to a utility with a
795 different name, and that should not change what it does. Thus, if you
796 make @file{foo} a link to @file{ls}, the program should behave the
797 same regardless of which of those names is used to invoke it.
799 Instead, use a run time option or a compilation switch or both to
800 select among the alternate behaviors. You can also build two versions
801 of the program, with different default behaviors, and install them
802 under two different names.
804 @cindex output device and program's behavior
805 Likewise, please don't make the behavior of a command-line program
806 depend on the type of output device it gets as standard output or
807 standard input. Device independence is an important principle of the
808 system's design; do not compromise it merely to save someone from
809 typing an option now and then. (Variation in error message syntax
810 when using a terminal is ok, because that is a side issue that people
813 If you think one behavior is most useful when the output is to a
814 terminal, and another is most useful when the output is a file or a
815 pipe, then it is usually best to make the default behavior the one
816 that is useful with output to a terminal, and have an option for the
817 other behavior. You can also build two different versions of the
818 program with different names.
820 There is an exception for programs whose output in certain cases is
821 binary data. Sending such output to a terminal is useless and can
822 cause trouble. If such a program normally sends its output to stdout,
823 it should detect, in these cases, when the output is a terminal and
824 give an error message instead. The @code{-f} option should override
825 this exception, thus permitting the output to go to the terminal.
827 Compatibility requires certain programs to depend on the type of output
828 device. It would be disastrous if @code{ls} or @code{sh} did not do so
829 in the way all users expect. In some of these cases, we supplement the
830 program with a preferred alternate version that does not depend on the
831 output device type. For example, we provide a @code{dir} program much
832 like @code{ls} except that its default output format is always
835 @node Finding Program Files
836 @section Finding the Program's Executable and Associated Files
838 A program may need to find the executable file it was started with, so
839 as to relaunch the same program. It may need to find associated
840 files, either source files or files constructed by building, that
843 The way to find them starts with looking at @code{argv[0]}.
845 If that string contains a slash, it is by convention the file name of
846 the executable and its directory part is the directory that contained
847 the executable. This is the case when the program was not found
848 through @env{PATH}, which normally means it was built but not
849 installed, and run from the build directory. The program can use the
850 @code{argv[0]} file name to relaunch itself, and can look in its
851 directory part for associated files. If that file name is not
852 absolute, then it is relative to the working directory in which the
855 If @code{argv[0]} does not contain a slash, it is a command name whose
856 executable was found via @env{PATH}. The program should search for
857 that name in the directories in @env{PATH}, interpreting @file{.} as
858 the working directory that was current when the program started.
860 If this procedure finds the executable, we call the directory it was
861 found in the @dfn{invocation directory}. The program should check
862 for the presence in that directory of the associated files it needs.
864 If the program's executable is normally built in a subdirectory of the
865 main build directory, and the main build directory contains associated
866 files (perhaps including subdirectories), the program should look at
867 the parent of the invocation directory, checking for the associated
868 files and subdirectories the main build directory should contain.
870 If the invocation directory doesn't contain what's needed, but the
871 executable file name is a symbolic link, the program should try using
872 the link target's containing directory as the invocation directory.
874 If this procedure doesn't come up with an invocation directory that is
875 valid---normally the case for an installed program that was found via
876 @env{PATH}---the program should look for the associated files in the
877 directories where the program's makefile installs them.
878 @xref{Directory Variables}.
880 Providing valid information in @code{argv[0]} is a convention, not
881 guaranteed. Well-behaved programs that launch other programs, such as
882 shells, follow the convention; your code should follow it too, when
883 launching other programs. But it is always possible to launch the
884 program and give a nonsensical value in @code{argv[0]}.
886 Therefore, any program that needs to know the location of its
887 executable, or that of of other associated files, should offer the
888 user environment variables to specify those locations explicitly.
890 @strong{Don't give special privilege, such as with the @code{setuid}
891 bit, to programs that will search heuristically for associated files
892 or for their own executables when invoked that way.} Limit that
893 privilege to programs that find associated files in hard-coded
894 installed locations such as under @file{/usr} and @file{/etc}.
896 @c ??? Is even that safe, in a setuid program?
898 @xref{Bourne Shell Variables,,, bash, Bash Reference Manual},
899 for more information about @env{PATH}.
901 @node Graphical Interfaces
902 @section Standards for Graphical Interfaces
903 @cindex graphical user interface
904 @cindex interface styles
905 @cindex user interface styles
909 When you write a program that provides a graphical user interface,
910 please make it work with the X Window System, using the GTK+ toolkit
911 or the GNUstep toolkit, unless the functionality specifically requires
912 some alternative (for example, ``displaying jpeg images while in
915 In addition, please provide a command-line interface to control the
916 functionality. (In many cases, the graphical user interface can be a
917 separate program which invokes the command-line program.) This is
918 so that the same jobs can be done from scripts.
923 @cindex keyboard interface
924 @cindex library interface
925 Please also consider providing a D-bus interface for use from other
926 running programs, such as within GNOME@. (GNOME used to use CORBA
927 for this, but that is being phased out.) In addition, consider
928 providing a library interface (for use from C), and perhaps a
929 keyboard-driven console interface (for use by users from console
930 mode). Once you are doing the work to provide the functionality and
931 the graphical interface, these won't be much extra work.
933 Please make your program interoperate with access technology such as
935 @url{https://www.gnu.org/accessibility/accessibility.html}). This should
936 be automatic if you use GTK+.
938 @node Command-Line Interfaces
939 @section Standards for Command Line Interfaces
940 @cindex command-line interface
943 It is a good idea to follow the POSIX guidelines for the
944 command-line options of a program. The easiest way to do this is to use
945 @code{getopt} to parse them. Note that the GNU version of @code{getopt}
946 will normally permit options anywhere among the arguments unless the
947 special argument @samp{--} is used. This is not what POSIX
948 specifies; it is a GNU extension.
950 @cindex long-named options
951 Please define long-named options that are equivalent to the
952 single-letter Unix-style options. We hope to make GNU more user
953 friendly this way. This is easy to do with the GNU function
956 One of the advantages of long-named options is that they can be
957 consistent from program to program. For example, users should be able
958 to expect the ``verbose'' option of any GNU program which has one, to be
959 spelled precisely @samp{--verbose}. To achieve this uniformity, look at
960 the table of common long-option names when you choose the option names
961 for your program (@pxref{Option Table}).
963 It is usually a good idea for file names given as ordinary arguments to
964 be input files only; any output files would be specified using options
965 (preferably @samp{-o} or @samp{--output}). Even if you allow an output
966 file name as an ordinary argument for compatibility, try to provide an
967 option as another way to specify it. This will lead to more consistency
968 among GNU utilities, and fewer idiosyncrasies for users to remember.
970 @cindex standard command-line options
971 @cindex options, standard command-line
972 @cindex CGI programs, standard options for
973 @cindex PATH_INFO, specifying standard options as
974 All programs should support two standard options: @samp{--version}
975 and @samp{--help}. CGI programs should accept these as command-line
976 options, and also if given as the @env{PATH_INFO}; for instance,
977 visiting @indicateurl{http://example.org/p.cgi/--help} in a browser should
978 output the same information as invoking @samp{p.cgi --help} from the
982 * --version:: The standard output for @option{--version}.
983 * --help:: The standard output for @option{--help}.
987 @subsection @option{--version}
989 @cindex @samp{--version} output
991 The standard @code{--version} option should direct the program to
992 print information about its name, version, origin and legal status,
993 all on standard output, and then exit successfully. Other options and
994 arguments should be ignored once this is seen, and the program should
995 not perform its normal function.
997 @cindex canonical name of a program
998 @cindex program's canonical name
999 The first line is meant to be easy for a program to parse; the version
1000 number proper starts after the last space. In addition, it contains
1001 the canonical name for this program, in this format:
1008 The program's name should be a constant string; @emph{don't} compute it
1009 from @code{argv[0]}. The idea is to state the standard or canonical
1010 name for the program, not its file name. There are other ways to find
1011 out the precise file name where a command is found in @code{PATH}.
1013 If the program is a subsidiary part of a larger package, mention the
1014 package name in parentheses, like this:
1017 emacsserver (GNU Emacs) 19.30
1021 If the package has a version number which is different from this
1022 program's version number, you can mention the package version number
1023 just before the close-parenthesis.
1025 If you @emph{need} to mention the version numbers of libraries which
1026 are distributed separately from the package which contains this program,
1027 you can do so by printing an additional line of version info for each
1028 library you want to mention. Use the same format for these lines as for
1031 Please do not mention all of the libraries that the program uses ``just
1032 for completeness''---that would produce a lot of unhelpful clutter.
1033 Please mention library version numbers only if you find in practice that
1034 they are very important to you in debugging.
1036 The following line, after the version number line or lines, should be a
1037 copyright notice. If more than one copyright notice is called for, put
1038 each on a separate line.
1040 Next should follow a line stating the license, preferably using one of
1041 the abbreviations below, and a brief statement that the program is free
1042 software, and that users are free to copy and change it. Also mention
1043 that there is no warranty, to the extent permitted by law. See
1044 recommended wording below.
1046 It is ok to finish the output with a list of the major authors of the
1047 program, as a way of giving credit.
1049 Here's an example of output that follows these rules:
1053 Copyright (C) 2007 Free Software Foundation, Inc.
1054 License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>
1055 This is free software: you are free to change and redistribute it.
1056 There is NO WARRANTY, to the extent permitted by law.
1059 You should adapt this to your program, of course, filling in the proper
1060 year, copyright holder, name of program, and the references to
1061 distribution terms, and changing the rest of the wording as necessary.
1063 This copyright notice only needs to mention the most recent year in
1064 which changes were made---there's no need to list the years for previous
1065 versions' changes. You don't have to mention the name of the program in
1066 these notices, if that is inconvenient, since it appeared in the first
1067 line. (The rules are different for copyright notices in source files;
1068 @pxref{Copyright Notices,,,maintain,Information for GNU Maintainers}.)
1070 Translations of the above lines must preserve the validity of the
1071 copyright notices (@pxref{Internationalization}). If the translation's
1072 character set supports it, the @samp{(C)} should be replaced with the
1073 copyright symbol, as follows:
1076 (the official copyright symbol, which is the letter C in a circle);
1082 Write the word ``Copyright'' exactly like that, in English. Do not
1083 translate it into another language. International treaties recognize
1084 the English word ``Copyright''; translations into other languages do not
1085 have legal significance.
1087 Finally, here is the table of our suggested license abbreviations.
1088 Any abbreviation can be followed by @samp{v@var{version}[+]}, meaning
1089 that particular version, or later versions with the @samp{+}, as shown
1090 above. In the case of a GNU license, @emph{always} indicate the permitted
1091 versions in this way.
1093 In the case of exceptions for extra permissions with the GPL, we use
1094 @samp{/} for a separator; the version number can follow the license
1095 abbreviation as usual, as in the examples below.
1099 GNU General Public License, @url{https://www.gnu.org/@/licenses/@/gpl.html}.
1102 GNU Lesser General Public License, @url{https://www.gnu.org/@/licenses/@/lgpl.html}.
1105 GNU GPL with the exception for Ada.
1108 The Apache Software Foundation license,
1109 @url{https://directory.fsf.org/@/wiki/@/License:Apache2.0}.
1112 The Artistic license used for Perl,
1113 @url{https://directory.fsf.org/@/wiki/@/License:ArtisticLicense2.0}.
1116 The Expat license, @url{https://directory.fsf.org/@/wiki/@/License:Expat}.
1119 The Mozilla Public License, @url{https://directory.fsf.org/@/wiki/@/License:MPLv2.0}.
1122 The original (4-clause) BSD license, incompatible with the GNU GPL,@*
1123 @url{https://directory.fsf.org/@/wiki/@/License:BSD_4Clause}.
1126 The license used for PHP, @url{https://directory.fsf.org/@/wiki/@/License:PHPv3.01}.
1129 The non-license that is being in the public domain,@*
1130 @url{https://www.gnu.org/@/licenses/@/license-list.html#PublicDomain}.
1133 The license for Python,
1134 @url{https://directory.fsf.org/@/wiki/@/License:Python2.0.1}.
1137 The revised (3-clause) BSD, compatible with the GNU GPL,@*
1138 @url{https://directory.fsf.org/@/wiki/@/License:BSD_3Clause}.
1141 The simple non-copyleft license used for most versions of the X Window
1142 System, @url{https://directory.fsf.org/@/wiki/@/License:X11}.
1145 The license for Zlib, @url{https://directory.fsf.org/@/wiki/@/License:Zlib}.
1149 More information about these licenses and many more are on the GNU
1150 licensing web pages,
1151 @url{https://www.gnu.org/@/licenses/@/license-list.html}.
1155 @subsection @option{--help}
1157 @cindex @samp{--help} output
1159 The standard @code{--help} option should output brief documentation
1160 for how to invoke the program, on standard output, then exit
1161 successfully. Other options and arguments should be ignored once this
1162 is seen, and the program should not perform its normal function.
1164 @cindex address for bug reports
1166 Near the end of the @samp{--help} option's output, please place lines
1167 giving the email address for bug reports, the package's home page
1168 (normally @indicateurl{https://www.gnu.org/software/@var{pkg}}), and the
1169 general page for help using GNU programs. The format should be like this:
1172 Report bugs to: @var{mailing-address}
1173 @var{pkg} home page: <https://www.gnu.org/software/@var{pkg}/>
1174 General help using GNU software: <https://www.gnu.org/gethelp/>
1177 It is ok to mention other appropriate mailing lists and web pages.
1180 @node Dynamic Plug-In Interfaces
1181 @section Standards for Dynamic Plug-in Interfaces
1183 @cindex dynamic plug-ins
1185 Another aspect of keeping free programs free is encouraging
1186 development of free plug-ins, and discouraging development of
1187 proprietary plug-ins. Many GNU programs will not have anything like
1188 plug-ins at all, but those that do should follow these
1191 First, the general plug-in architecture design should closely tie the
1192 plug-in to the original code, such that the plug-in and the base
1193 program are parts of one extended program. For GCC, for example,
1194 plug-ins receive and modify GCC's internal data structures, and so
1195 clearly form an extended program with the base GCC.
1197 @vindex plugin_is_GPL_compatible
1198 Second, you should require plug-in developers to affirm that their
1199 plug-ins are released under an appropriate license. This should be
1200 enforced with a simple programmatic check. For GCC, again for
1201 example, a plug-in must define the global symbol
1202 @code{plugin_is_GPL_compatible}, thus asserting that the plug-in is
1203 released under a GPL-compatible license (@pxref{Plugins,, Plugins,
1204 gccint, GCC Internals}).
1206 By adding this check to your program you are not creating a new legal
1207 requirement. The GPL itself requires plug-ins to be free software,
1208 licensed compatibly. As long as you have followed the first rule above
1209 to keep plug-ins closely tied to your original program, the GPL and AGPL
1210 already require those plug-ins to be released under a compatible
1211 license. The symbol definition in the plug-in---or whatever equivalent
1212 works best in your program---makes it harder for anyone who might
1213 distribute proprietary plug-ins to legally defend themselves. If a case
1214 about this got to court, we can point to that symbol as evidence that
1215 the plug-in developer understood that the license had this requirement.
1219 @section Table of Long Options
1220 @cindex long option names
1221 @cindex table of long options
1223 Here is a table of long options used by GNU programs. It is surely
1224 incomplete, but we aim to list all the options that a new program might
1225 want to be compatible with. If you use names not already in the table,
1226 please send @email{bug-standards@@gnu.org} a list of them, with their
1227 meanings, so we can update the table.
1229 @c Please leave newlines between items in this table; it's much easier
1230 @c to update when it isn't completely squashed together and unreadable.
1231 @c When there is more than one short option for a long option name, put
1232 @c a semicolon between the lists of the programs that use them, not a
1233 @c period. --friedman
1237 @samp{-N} in @code{tar}.
1240 @samp{-a} in @code{du}, @code{ls}, @code{nm}, @code{stty}, @code{uname},
1241 and @code{unexpand}.
1244 @samp{-a} in @code{diff}.
1247 @samp{-A} in @code{ls}.
1250 @samp{-a} in @code{etags}, @code{tee}, @code{time};
1251 @samp{-r} in @code{tar}.
1254 @samp{-a} in @code{cp}.
1257 @samp{-n} in @code{shar}.
1260 @samp{-l} in @code{m4}.
1263 @samp{-a} in @code{diff}.
1266 @samp{-v} in @code{gawk}.
1269 @samp{-W} in @code{make}.
1272 @samp{-o} in @code{make}.
1275 @samp{-a} in @code{recode}.
1278 @samp{-a} in @code{wdiff}.
1280 @item auto-reference
1281 @samp{-A} in @code{ptx}.
1284 @samp{-n} in @code{wdiff}.
1287 For server programs, run in the background.
1289 @item backward-search
1290 @samp{-B} in @code{ctags}.
1293 @samp{-f} in @code{shar}.
1302 @samp{-b} in @code{tac}.
1305 @samp{-b} in @code{cpio} and @code{diff}.
1308 @samp{-b} in @code{shar}.
1311 Used in @code{cpio} and @code{tar}.
1314 @samp{-b} in @code{head} and @code{tail}.
1317 @samp{-b} in @code{ptx}.
1320 Used in various programs to make output shorter.
1323 @samp{-c} in @code{head}, @code{split}, and @code{tail}.
1326 @samp{-C} in @code{etags}.
1329 @samp{-A} in @code{tar}.
1332 Used in various programs to specify the directory to use.
1335 @samp{-c} in @code{chgrp} and @code{chown}.
1338 @samp{-F} in @code{ls}.
1341 @samp{-c} in @code{recode}.
1344 @samp{-c} in @code{su};
1348 @samp{-d} in @code{tar}.
1351 Used in @code{gawk}.
1354 @samp{-Z} in @code{tar} and @code{shar}.
1357 @samp{-A} in @code{tar}.
1360 @samp{-w} in @code{tar}.
1363 Used in @code{diff}.
1366 @samp{-W copyleft} in @code{gawk}.
1369 @samp{-C} in @code{ptx}, @code{recode}, and @code{wdiff};
1370 @samp{-W copyright} in @code{gawk}.
1376 @samp{-q} in @code{who}.
1379 @samp{-l} in @code{du}.
1382 Used in @code{tar} and @code{cpio}.
1385 @samp{-c} in @code{shar}.
1388 @samp{-x} in @code{ctags}.
1391 @samp{-d} in @code{touch}.
1394 @samp{-d} in @code{make} and @code{m4};
1398 @samp{-D} in @code{m4}.
1401 @samp{-d} in Bison and @code{ctags}.
1404 @samp{-D} in @code{tar}.
1407 @samp{-L} in @code{chgrp}, @code{chown}, @code{cpio}, @code{du},
1408 @code{ls}, and @code{tar}.
1410 @item dereference-args
1411 @samp{-D} in @code{du}.
1414 Specify an I/O device (special file name).
1417 @samp{-d} in @code{recode}.
1419 @item dictionary-order
1420 @samp{-d} in @code{look}.
1423 @samp{-d} in @code{tar}.
1426 @samp{-n} in @code{csplit}.
1429 Specify the directory to use, in various programs. In @code{ls}, it
1430 means to show directories themselves rather than their contents. In
1431 @code{rm} and @code{ln}, it means to not treat links to directories
1435 @samp{-x} in @code{strip}.
1437 @item discard-locals
1438 @samp{-X} in @code{strip}.
1441 @samp{-n} in @code{make}.
1444 @samp{-e} in @code{diff}.
1446 @item elide-empty-files
1447 @samp{-z} in @code{csplit}.
1450 @samp{-x} in @code{wdiff}.
1453 @samp{-z} in @code{wdiff}.
1455 @item entire-new-file
1456 @samp{-N} in @code{diff}.
1458 @item environment-overrides
1459 @samp{-e} in @code{make}.
1462 @samp{-e} in @code{xargs}.
1468 Used in @code{makeinfo}.
1471 @samp{-o} in @code{m4}.
1474 @samp{-b} in @code{ls}.
1477 @samp{-X} in @code{tar}.
1483 @samp{-x} in @code{xargs}.
1486 @samp{-e} in @code{unshar}.
1489 @samp{-t} in @code{diff}.
1492 @samp{-e} in @code{sed}.
1495 @samp{-g} in @code{nm}.
1498 @samp{-i} in @code{cpio};
1499 @samp{-x} in @code{tar}.
1502 @samp{-f} in @code{finger}.
1505 @samp{-f} in @code{su}.
1507 @item fatal-warnings
1508 @samp{-E} in @code{m4}.
1511 @samp{-f} in @code{gawk}, @code{info}, @code{make}, @code{mt},
1512 @code{sed}, and @code{tar}.
1514 @item field-separator
1515 @samp{-F} in @code{gawk}.
1521 @samp{-F} in @code{ls}.
1524 @samp{-T} in @code{tar}.
1527 Used in @code{makeinfo}.
1529 @item flag-truncation
1530 @samp{-F} in @code{ptx}.
1532 @item fixed-output-files
1536 @samp{-f} in @code{tail}.
1538 @item footnote-style
1539 Used in @code{makeinfo}.
1542 @samp{-f} in @code{cp}, @code{ln}, @code{mv}, and @code{rm}.
1545 @samp{-F} in @code{shar}.
1548 For server programs, run in the foreground;
1549 in other words, don't do anything special to run the server
1553 Used in @code{ls}, @code{time}, and @code{ptx}.
1556 @samp{-F} in @code{m4}.
1562 @samp{-g} in @code{ptx}.
1565 @samp{-x} in @code{tar}.
1568 @samp{-i} in @code{ul}.
1571 @samp{-g} in @code{recode}.
1574 @samp{-g} in @code{install}.
1577 @samp{-z} in @code{tar} and @code{shar}.
1580 @samp{-H} in @code{m4}.
1583 @samp{-h} in @code{objdump} and @code{recode}
1586 @samp{-H} in @code{who}.
1589 Used to ask for brief usage information.
1591 @item here-delimiter
1592 @samp{-d} in @code{shar}.
1594 @item hide-control-chars
1595 @samp{-q} in @code{ls}.
1598 In @code{makeinfo}, output HTML.
1601 @samp{-u} in @code{who}.
1604 @samp{-D} in @code{diff}.
1607 @samp{-I} in @code{ls};
1608 @samp{-x} in @code{recode}.
1610 @item ignore-all-space
1611 @samp{-w} in @code{diff}.
1613 @item ignore-backups
1614 @samp{-B} in @code{ls}.
1616 @item ignore-blank-lines
1617 @samp{-B} in @code{diff}.
1620 @samp{-f} in @code{look} and @code{ptx};
1621 @samp{-i} in @code{diff} and @code{wdiff}.
1624 @samp{-i} in @code{make}.
1627 @samp{-i} in @code{ptx}.
1629 @item ignore-indentation
1630 @samp{-I} in @code{etags}.
1632 @item ignore-init-file
1635 @item ignore-interrupts
1636 @samp{-i} in @code{tee}.
1638 @item ignore-matching-lines
1639 @samp{-I} in @code{diff}.
1641 @item ignore-space-change
1642 @samp{-b} in @code{diff}.
1645 @samp{-i} in @code{tar}.
1648 @samp{-i} in @code{etags};
1649 @samp{-I} in @code{m4}.
1652 @samp{-I} in @code{make}.
1655 @samp{-G} in @code{tar}.
1658 @samp{-i}, @samp{-l}, and @samp{-m} in Finger.
1661 In some programs, specify the name of the file to read as the user's
1665 @samp{-i} in @code{expand}.
1668 @samp{-T} in @code{diff}.
1671 @samp{-i} in @code{ls}.
1674 @samp{-i} in @code{cp}, @code{ln}, @code{mv}, @code{rm};
1675 @samp{-e} in @code{m4};
1676 @samp{-p} in @code{xargs};
1677 @samp{-w} in @code{tar}.
1680 @samp{-p} in @code{shar}.
1686 @samp{-j} in @code{make}.
1689 @samp{-n} in @code{make}.
1692 @samp{-k} in @code{make}.
1695 @samp{-k} in @code{csplit}.
1698 @samp{-k} in @code{du} and @code{ls}.
1701 @samp{-l} in @code{etags}.
1704 @samp{-l} in @code{wdiff}.
1706 @item level-for-gzip
1707 @samp{-g} in @code{shar}.
1710 @samp{-C} in @code{split}.
1713 Used in @code{split}, @code{head}, and @code{tail}.
1716 @samp{-l} in @code{cpio}.
1720 Used in @code{gawk}.
1723 @samp{-t} in @code{cpio};
1724 @samp{-l} in @code{recode}.
1727 @samp{-t} in @code{tar}.
1730 @samp{-N} in @code{ls}.
1733 @samp{-l} in @code{make}.
1739 Used in @code{uname}.
1742 @samp{-M} in @code{ptx}.
1745 @samp{-m} in @code{hello} and @code{uname}.
1747 @item make-directories
1748 @samp{-d} in @code{cpio}.
1751 @samp{-f} in @code{make}.
1757 @samp{-n} in @code{xargs}.
1760 @samp{-n} in @code{xargs}.
1763 @samp{-l} in @code{xargs}.
1766 @samp{-l} in @code{make}.
1769 @samp{-P} in @code{xargs}.
1772 @samp{-T} in @code{who}.
1775 @samp{-T} in @code{who}.
1778 @samp{-d} in @code{diff}.
1780 @item mixed-uuencode
1781 @samp{-M} in @code{shar}.
1784 @samp{-m} in @code{install}, @code{mkdir}, and @code{mkfifo}.
1786 @item modification-time
1787 @samp{-m} in @code{tar}.
1790 @samp{-M} in @code{tar}.
1796 @samp{-L} in @code{m4}.
1799 @samp{-a} in @code{shar}.
1802 @samp{-W} in @code{make}.
1804 @item no-builtin-rules
1805 @samp{-r} in @code{make}.
1807 @item no-character-count
1808 @samp{-w} in @code{shar}.
1810 @item no-check-existing
1811 @samp{-x} in @code{shar}.
1814 @samp{-3} in @code{wdiff}.
1817 @samp{-c} in @code{touch}.
1820 @samp{-D} in @code{etags}.
1823 @samp{-1} in @code{wdiff}.
1825 @item no-dereference
1826 @samp{-d} in @code{cp}.
1829 @samp{-2} in @code{wdiff}.
1832 @samp{-S} in @code{make}.
1838 @samp{-P} in @code{shar}.
1841 @samp{-e} in @code{gprof}.
1844 @samp{-R} in @code{etags}.
1847 @samp{-p} in @code{nm}.
1850 Don't print a startup splash screen.
1853 Used in @code{makeinfo}.
1856 @samp{-a} in @code{gprof}.
1859 @samp{-E} in @code{gprof}.
1862 @samp{-m} in @code{shar}.
1865 Used in @code{makeinfo}.
1868 Used in @code{emacsclient}.
1871 Used in various programs to inhibit warnings.
1874 @samp{-n} in @code{info}.
1877 @samp{-n} in @code{uname}.
1880 @samp{-f} in @code{cpio}.
1883 @samp{-n} in @code{objdump}.
1886 @samp{-0} in @code{xargs}.
1889 @samp{-n} in @code{cat}.
1891 @item number-nonblank
1892 @samp{-b} in @code{cat}.
1895 @samp{-n} in @code{nm}.
1897 @item numeric-uid-gid
1898 @samp{-n} in @code{cpio} and @code{ls}.
1904 @samp{-o} in @code{tar}.
1907 @samp{-o} in @code{make}.
1909 @item one-file-system
1910 @samp{-l} in @code{tar}, @code{cp}, and @code{du}.
1913 @samp{-o} in @code{ptx}.
1916 @samp{-f} in @code{gprof}.
1919 @samp{-F} in @code{gprof}.
1922 @samp{-o} in @code{getopt}, @code{fdlist}, @code{fdmount},
1923 @code{fdmountd}, and @code{fdumount}.
1926 In various programs, specify the output file name.
1929 @samp{-o} in @code{shar}.
1932 @samp{-o} in @code{rm}.
1935 @samp{-c} in @code{unshar}.
1938 @samp{-o} in @code{install}.
1941 @samp{-l} in @code{diff}.
1943 @item paragraph-indent
1944 Used in @code{makeinfo}.
1947 @samp{-p} in @code{mkdir} and @code{rmdir}.
1950 @samp{-p} in @code{ul}.
1953 @samp{-p} in @code{cpio}.
1956 @samp{-P} in @code{finger}.
1959 @samp{-c} in @code{cpio} and @code{tar}.
1962 Used in @code{gawk}.
1964 @item prefix-builtins
1965 @samp{-P} in @code{m4}.
1968 @samp{-f} in @code{csplit}.
1971 Used in @code{tar} and @code{cp}.
1973 @item preserve-environment
1974 @samp{-p} in @code{su}.
1976 @item preserve-modification-time
1977 @samp{-m} in @code{cpio}.
1979 @item preserve-order
1980 @samp{-s} in @code{tar}.
1982 @item preserve-permissions
1983 @samp{-p} in @code{tar}.
1986 @samp{-l} in @code{diff}.
1989 @samp{-L} in @code{cmp}.
1991 @item print-data-base
1992 @samp{-p} in @code{make}.
1994 @item print-directory
1995 @samp{-w} in @code{make}.
1997 @item print-file-name
1998 @samp{-o} in @code{nm}.
2001 @samp{-s} in @code{nm}.
2004 @samp{-p} in @code{wdiff}.
2007 @samp{-p} in @code{ed}.
2010 Specify an HTTP proxy.
2013 @samp{-X} in @code{shar}.
2016 @samp{-q} in @code{make}.
2019 Used in many programs to inhibit the usual output. Every
2020 program accepting @samp{--quiet} should accept @samp{--silent} as a
2024 @samp{-Q} in @code{shar}
2027 @samp{-Q} in @code{ls}.
2030 @samp{-n} in @code{diff}.
2033 Used in @code{gawk}.
2035 @item read-full-blocks
2036 @samp{-B} in @code{tar}.
2042 @samp{-n} in @code{make}.
2045 @samp{-R} in @code{tar}.
2048 Used in @code{chgrp}, @code{chown}, @code{cp}, @code{ls}, @code{diff},
2052 @samp{-r} in @code{touch}.
2055 @samp{-r} in @code{ptx}.
2058 @samp{-r} in @code{tac} and @code{etags}.
2061 @samp{-r} in @code{uname}.
2064 @samp{-R} in @code{m4}.
2067 @samp{-r} in @code{objdump}.
2070 @samp{-r} in @code{cpio}.
2073 @samp{-i} in @code{xargs}.
2075 @item report-identical-files
2076 @samp{-s} in @code{diff}.
2078 @item reset-access-time
2079 @samp{-a} in @code{cpio}.
2082 @samp{-r} in @code{ls} and @code{nm}.
2085 @samp{-f} in @code{diff}.
2087 @item right-side-defs
2088 @samp{-R} in @code{ptx}.
2091 @samp{-s} in @code{tar}.
2093 @item same-permissions
2094 @samp{-p} in @code{tar}.
2097 @samp{-g} in @code{stty}.
2102 @item sentence-regexp
2103 @samp{-S} in @code{ptx}.
2106 @samp{-S} in @code{du}.
2109 @samp{-s} in @code{tac}.
2112 Used by @code{recode} to choose files or pipes for sequencing passes.
2115 @samp{-s} in @code{su}.
2118 @samp{-A} in @code{cat}.
2120 @item show-c-function
2121 @samp{-p} in @code{diff}.
2124 @samp{-E} in @code{cat}.
2126 @item show-function-line
2127 @samp{-F} in @code{diff}.
2130 @samp{-T} in @code{cat}.
2133 Used in many programs to inhibit the usual output.
2134 Every program accepting
2135 @samp{--silent} should accept @samp{--quiet} as a synonym.
2138 @samp{-s} in @code{ls}.
2141 Specify a file descriptor for a network server to use for its socket,
2142 instead of opening and binding a new socket. This provides a way to
2143 run, in a non-privileged process, a server that normally needs a
2144 reserved port number.
2150 @samp{-W source} in @code{gawk}.
2153 @samp{-S} in @code{tar}.
2155 @item speed-large-files
2156 @samp{-H} in @code{diff}.
2159 @samp{-E} in @code{unshar}.
2161 @item split-size-limit
2162 @samp{-L} in @code{shar}.
2165 @samp{-s} in @code{cat}.
2168 @samp{-w} in @code{wdiff}.
2171 @samp{-y} in @code{wdiff}.
2174 Used in @code{tar} and @code{diff} to specify which file within
2175 a directory to start processing with.
2178 @samp{-s} in @code{wdiff}.
2180 @item stdin-file-list
2181 @samp{-S} in @code{shar}.
2184 @samp{-S} in @code{make}.
2187 @samp{-s} in @code{recode}.
2190 @samp{-s} in @code{install}.
2193 @samp{-s} in @code{strip}.
2196 @samp{-S} in @code{strip}.
2199 @samp{-s} in @code{shar}.
2202 @samp{-S} in @code{cp}, @code{ln}, @code{mv}.
2205 @samp{-b} in @code{csplit}.
2208 @samp{-s} in @code{gprof}.
2211 @samp{-s} in @code{du}.
2214 @samp{-s} in @code{ln}.
2217 Used in GDB and @code{objdump}.
2220 @samp{-s} in @code{m4}.
2223 @samp{-s} in @code{uname}.
2226 @samp{-t} in @code{expand} and @code{unexpand}.
2229 @samp{-T} in @code{ls}.
2232 @samp{-T} in @code{tput} and @code{ul}.
2233 @samp{-t} in @code{wdiff}.
2236 @samp{-a} in @code{diff}.
2239 @samp{-T} in @code{shar}.
2242 Used in @code{ls} and @code{touch}.
2245 Specify how long to wait before giving up on some operation.
2248 @samp{-O} in @code{tar}.
2251 @samp{-c} in @code{du}.
2254 @samp{-t} in @code{make}, @code{ranlib}, and @code{recode}.
2257 @samp{-t} in @code{m4}.
2260 @samp{-t} in @code{hello};
2261 @samp{-W traditional} in @code{gawk};
2262 @samp{-G} in @code{ed}, @code{m4}, and @code{ptx}.
2268 @samp{-t} in @code{ctags}.
2270 @item typedefs-and-c++
2271 @samp{-T} in @code{ctags}.
2274 @samp{-t} in @code{ptx}.
2277 @samp{-z} in @code{tar}.
2280 @samp{-u} in @code{cpio}.
2283 @samp{-U} in @code{m4}.
2285 @item undefined-only
2286 @samp{-u} in @code{nm}.
2289 @samp{-u} in @code{cp}, @code{ctags}, @code{mv}, @code{tar}.
2292 Used in @code{gawk}; same as @samp{--help}.
2295 @samp{-B} in @code{shar}.
2297 @item vanilla-operation
2298 @samp{-V} in @code{shar}.
2301 Print more information about progress. Many programs support this.
2304 @samp{-W} in @code{tar}.
2307 Print the version number.
2309 @item version-control
2310 @samp{-V} in @code{cp}, @code{ln}, @code{mv}.
2313 @samp{-v} in @code{ctags}.
2316 @samp{-V} in @code{tar}.
2319 @samp{-W} in @code{make}.
2321 @item whole-size-limit
2322 @samp{-l} in @code{shar}.
2325 @samp{-w} in @code{ls} and @code{ptx}.
2328 @samp{-W} in @code{ptx}.
2331 @samp{-T} in @code{who}.
2334 @samp{-z} in @code{gprof}.
2337 @node OID Allocations
2338 @section OID Allocations
2339 @cindex OID allocations for GNU
2344 The OID (object identifier) 1.3.6.1.4.1.11591 has been assigned to the
2345 GNU Project (thanks to Sergey Poznyakoff). These are used for SNMP,
2346 LDAP, X.509 certificates, and so on. The web site
2347 @url{https://www.alvestrand.no/objectid} has a (voluntary) listing of
2348 many OID assignments.
2350 If you need a new slot for your GNU package, write
2351 @email{maintainers@@gnu.org}. Here is a list of arcs currently
2355 @include gnu-oids.texi
2360 @section Memory Usage
2361 @cindex memory usage
2363 If a program typically uses just a few meg of memory, don't bother making any
2364 effort to reduce memory usage. For example, if it is impractical for
2365 other reasons to operate on files more than a few meg long, it is
2366 reasonable to read entire input files into memory to operate on them.
2368 However, for programs such as @code{cat} or @code{tail}, that can
2369 usefully operate on very large files, it is important to avoid using a
2370 technique that would artificially limit the size of files it can handle.
2371 If a program works by lines and could be applied to arbitrary
2372 user-supplied input files, it should keep only a line in memory, because
2373 this is not very hard and users will want to be able to operate on input
2374 files that are bigger than will fit in memory all at once.
2376 If your program creates complicated data structures, just make them in
2377 memory and give a fatal error if @code{malloc} returns @code{NULL}.
2381 Memory analysis tools such as @command{valgrind} can be useful, but
2382 don't complicate a program merely to avoid their false alarms. For
2383 example, if memory is used until just before a process exits, don't
2384 free it simply to silence such a tool.
2391 Programs should be prepared to operate when @file{/usr} and @file{/etc}
2392 are read-only file systems. Thus, if the program manages log files,
2393 lock files, backup files, score files, or any other files which are
2394 modified for internal purposes, these files should not be stored in
2395 @file{/usr} or @file{/etc}.
2397 There are two exceptions. @file{/etc} is used to store system
2398 configuration information; it is reasonable for a program to modify
2399 files in @file{/etc} when its job is to update the system configuration.
2400 Also, if the user explicitly asks to modify one file in a directory, it
2401 is reasonable for the program to store other files in the same
2405 @chapter Making The Best Use of C
2407 This chapter provides advice on how best to use the C language
2408 when writing GNU software.
2411 * Formatting:: Formatting your source code.
2412 * Comments:: Commenting your work.
2413 * Syntactic Conventions:: Clean use of C constructs.
2414 * Names:: Naming variables, functions, and files.
2415 * System Portability:: Portability among different operating systems.
2416 * CPU Portability:: Supporting the range of CPU types.
2417 * System Functions:: Portability and ``standard'' library functions.
2418 * Internationalization:: Techniques for internationalization.
2419 * Character Set:: Use ASCII by default.
2420 * Quote Characters:: Use "..." or '...' in the C locale.
2421 * Mmap:: How you can safely use @code{mmap}.
2425 @section Formatting Your Source Code
2426 @cindex formatting source code
2429 @cindex length of source lines
2430 Please keep the length of source lines to 79 characters or less, for
2431 maximum readability in the widest range of environments.
2434 @cindex braces, in C source
2435 @cindex function definitions, formatting
2436 It is important to put the open-brace that starts the body of a C
2437 function in column one, so that they will start a defun. Several
2438 tools look for open-braces in column one to find the beginnings of C
2439 functions. These tools will not work on code not formatted that way.
2441 Avoid putting open-brace, open-parenthesis or open-bracket in column
2442 one when they are inside a function, so that they won't start a defun.
2443 The open-brace that starts a @code{struct} body can go in column one
2444 if you find it useful to treat that definition as a defun.
2446 It is also important for function definitions to start the name of the
2447 function in column one. This helps people to search for function
2448 definitions, and may also help certain tools recognize them. Thus,
2449 using Standard C syntax, the format is this:
2453 concat (char *s1, char *s2)
2459 If the arguments don't fit nicely on one line,
2464 lots_of_args (int an_integer, long a_long, short a_short,
2465 double a_double, float a_float)
2469 @cindex @code{struct} types, formatting
2470 @cindex @code{enum} types, formatting
2471 For @code{struct} and @code{enum} types, likewise put the braces in
2472 column one, unless the whole contents fits on one line:
2480 struct foo @{ int a, b; @}
2483 The rest of this section gives our recommendations for other aspects of
2484 C formatting style, which is also the default style of the @code{indent}
2485 program in version 1.2 and newer. It corresponds to the options
2488 -nbad -bap -nbc -bbo -bl -bli2 -bls -ncdb -nce -cp1 -cs -di2
2489 -ndj -nfc1 -nfca -hnl -i2 -ip5 -lp -pcs -psl -nsc -nsob
2492 We don't think of these recommendations as requirements, because it
2493 causes no problems for users if two different programs have different
2496 But whatever style you use, please use it consistently, since a mixture
2497 of styles within one program tends to look ugly. If you are
2498 contributing changes to an existing program, please follow the style of
2501 For the body of the function, our recommended style looks like this:
2513 return ++x + bar ();
2517 @cindex spaces before open-paren
2518 We find it easier to read a program when it has spaces before the
2519 open-parentheses and after the commas. Especially after the commas.
2521 When you split an expression into multiple lines, split it
2522 before an operator, not after one. Here is the right way:
2524 @cindex expressions, splitting
2526 if (foo_this_is_long && bar > win (x, y, z)
2527 && remaining_condition)
2530 Try to avoid having two operators of different precedence at the same
2531 level of indentation. For example, don't write this:
2534 mode = (inmode[j] == VOIDmode
2535 || GET_MODE_SIZE (outmode[j]) > GET_MODE_SIZE (inmode[j])
2536 ? outmode[j] : inmode[j]);
2539 Instead, use extra parentheses so that the indentation shows the nesting:
2542 mode = ((inmode[j] == VOIDmode
2543 || (GET_MODE_SIZE (outmode[j]) > GET_MODE_SIZE (inmode[j])))
2544 ? outmode[j] : inmode[j]);
2547 Insert extra parentheses so that Emacs will indent the code properly.
2548 For example, the following indentation looks nice if you do it by hand,
2551 v = rup->ru_utime.tv_sec*1000 + rup->ru_utime.tv_usec/1000
2552 + rup->ru_stime.tv_sec*1000 + rup->ru_stime.tv_usec/1000;
2556 but Emacs would alter it. Adding a set of parentheses produces
2557 something that looks equally nice, and which Emacs will preserve:
2560 v = (rup->ru_utime.tv_sec*1000 + rup->ru_utime.tv_usec/1000
2561 + rup->ru_stime.tv_sec*1000 + rup->ru_stime.tv_usec/1000);
2564 Format do-while statements like this:
2576 Please use formfeed characters (control-L) to divide the program into
2577 pages at logical places (but not within a function). It does not matter
2578 just how long the pages are, since they do not have to fit on a printed
2579 page. The formfeeds should appear alone on lines by themselves.
2582 @section Commenting Your Work
2585 Every program should start with a comment saying briefly what it is for.
2586 Example: @samp{fmt - filter for simple filling of text}. This comment
2587 should be at the top of the source file containing the @samp{main}
2588 function of the program.
2590 Also, please write a brief comment at the start of each source file,
2591 with the file name and a line or two about the overall purpose of the
2594 Please write the comments in a GNU program in English, because English
2595 is the one language that nearly all programmers in all countries can
2596 read. If you do not write English well, please write comments in
2597 English as well as you can, then ask other people to help rewrite them.
2598 If you can't write comments in English, please find someone to work with
2599 you and translate your comments into English.
2601 Please put a comment on each function saying what the function does,
2602 what sorts of arguments it gets, and what the possible values of
2603 arguments mean and are used for. It is not necessary to duplicate in
2604 words the meaning of the C argument declarations, if a C type is being
2605 used in its customary fashion. If there is anything nonstandard about
2606 its use (such as an argument of type @code{char *} which is really the
2607 address of the second character of a string, not the first), or any
2608 possible values that would not work the way one would expect (such as,
2609 that strings containing newlines are not guaranteed to work), be sure
2612 Also explain the significance of the return value, if there is one.
2614 Please put two spaces after the end of a sentence in your comments, so
2615 that the Emacs sentence commands will work. Also, please write
2616 complete sentences and capitalize the first word. If a lower-case
2617 identifier comes at the beginning of a sentence, don't capitalize it!
2618 Changing the spelling makes it a different identifier. If you don't
2619 like starting a sentence with a lower case letter, write the sentence
2620 differently (e.g., ``The identifier lower-case is @dots{}'').
2622 The comment on a function is much clearer if you use the argument
2623 names to speak about the argument values. The variable name itself
2624 should be lower case, but write it in upper case when you are speaking
2625 about the value rather than the variable itself. Thus, ``the inode
2626 number NODE_NUM'' rather than ``an inode''.
2628 There is usually no purpose in restating the name of the function in
2629 the comment before it, because readers can see that for themselves.
2630 There might be an exception when the comment is so long that the function
2631 itself would be off the bottom of the screen.
2633 There should be a comment on each static variable as well, like this:
2636 /* Nonzero means truncate lines in the display;
2637 zero means continue them. */
2641 @cindex conditionals, comments for
2642 @cindex @code{#endif}, commenting
2643 Every @samp{#endif} should have a comment, except in the case of short
2644 conditionals (just a few lines) that are not nested. The comment should
2645 state the condition of the conditional that is ending, @emph{including
2646 its sense}. @samp{#else} should have a comment describing the condition
2647 @emph{and sense} of the code that follows. For example:
2655 #endif /* not foo */
2665 but, by contrast, write the comments this way for a @samp{#ifndef}:
2678 #endif /* not foo */
2682 @node Syntactic Conventions
2683 @section Clean Use of C Constructs
2684 @cindex syntactic conventions
2686 @cindex implicit @code{int}
2687 @cindex function argument, declaring
2688 Please explicitly declare the types of all objects. For example, you
2689 should explicitly declare all arguments to functions, and you should
2690 declare functions to return @code{int} rather than omitting the
2693 @cindex compiler warnings
2694 @cindex @samp{-Wall} compiler option
2695 Some programmers like to use the GCC @samp{-Wall} option, and change the
2696 code whenever it issues a warning. If you want to do this, then do.
2697 Other programmers prefer not to use @samp{-Wall}, because it gives
2698 warnings for valid and legitimate code which they do not want to change.
2699 If you want to do this, then do. The compiler should be your servant,
2704 Don't make the program ugly just to placate static analysis tools such
2705 as @command{lint}, @command{clang}, and GCC with extra warnings
2706 options such as @option{-Wconversion} and @option{-Wundef}. These
2707 tools can help find bugs and unclear code, but they can also generate
2708 so many false alarms that it hurts readability to silence them with
2709 unnecessary casts, wrappers, and other complications. For example,
2710 please don't insert casts to @code{void} or calls to do-nothing
2711 functions merely to pacify a lint checker.
2713 Declarations of external functions and functions to appear later in the
2714 source file should all go in one place near the beginning of the file
2715 (somewhere before the first function definition in the file), or else
2716 should go in a header file. Don't put @code{extern} declarations inside
2719 @cindex temporary variables
2720 It used to be common practice to use the same local variables (with
2721 names like @code{tem}) over and over for different values within one
2722 function. Instead of doing this, it is better to declare a separate local
2723 variable for each distinct purpose, and give it a name which is
2724 meaningful. This not only makes programs easier to understand, it also
2725 facilitates optimization by good compilers. You can also move the
2726 declaration of each local variable into the smallest scope that includes
2727 all its uses. This makes the program even cleaner.
2729 Don't use local variables or parameters that shadow global identifiers.
2730 GCC's @samp{-Wshadow} option can detect this problem.
2732 @cindex multiple variables in a line
2733 Don't declare multiple variables in one declaration that spans lines.
2734 Start a new declaration on each line, instead. For example, instead
2760 (If they are global variables, each should have a comment preceding it
2763 When you have an @code{if}-@code{else} statement nested in another
2764 @code{if} statement, always put braces around the @code{if}-@code{else}.
2765 Thus, never write like this:
2788 If you have an @code{if} statement nested inside of an @code{else}
2789 statement, either write @code{else if} on one line, like this,
2799 with its @code{then}-part indented like the preceding @code{then}-part,
2800 or write the nested @code{if} within braces like this:
2812 Don't declare both a structure tag and variables or typedefs in the
2813 same declaration. Instead, declare the structure tag separately
2814 and then use it to declare the variables or typedefs.
2816 Try to avoid assignments inside @code{if}-conditions (assignments
2817 inside @code{while}-conditions are ok). For example, don't write
2821 if ((foo = (char *) malloc (sizeof *foo)) == NULL)
2822 fatal ("virtual memory exhausted");
2826 instead, write this:
2829 foo = (char *) malloc (sizeof *foo);
2831 fatal ("virtual memory exhausted");
2835 @section Naming Variables, Functions, and Files
2837 @cindex names of variables, functions, and files
2838 The names of global variables and functions in a program serve as
2839 comments of a sort. So don't choose terse names---instead, look for
2840 names that give useful information about the meaning of the variable or
2841 function. In a GNU program, names should be English, like other
2844 Local variable names can be shorter, because they are used only within
2845 one context, where (presumably) comments explain their purpose.
2847 Try to limit your use of abbreviations in symbol names. It is ok to
2848 make a few abbreviations, explain what they mean, and then use them
2849 frequently, but don't use lots of obscure abbreviations.
2851 Please use underscores to separate words in a name, so that the Emacs
2852 word commands can be useful within them. Stick to lower case; reserve
2853 upper case for macros and @code{enum} constants, and for name-prefixes
2854 that follow a uniform convention.
2856 For example, you should use names like @code{ignore_space_change_flag};
2857 don't use names like @code{iCantReadThis}.
2859 Variables that indicate whether command-line options have been
2860 specified should be named after the meaning of the option, not after
2861 the option-letter. A comment should state both the exact meaning of
2862 the option and its letter. For example,
2866 /* Ignore changes in horizontal whitespace (-b). */
2867 int ignore_space_change_flag;
2871 When you want to define names with constant integer values, use
2872 @code{enum} rather than @samp{#define}. GDB knows about enumeration
2875 @cindex file-name limitations
2877 You might want to make sure that none of the file names would conflict
2878 if the files were loaded onto an MS-DOS file system which shortens the
2879 names. You can use the program @code{doschk} to test for this.
2881 Some GNU programs were designed to limit themselves to file names of 14
2882 characters or less, to avoid file name conflicts if they are read into
2883 older System V systems. Please preserve this feature in the existing
2884 GNU programs that have it, but there is no need to do this in new GNU
2885 programs. @code{doschk} also reports file names longer than 14
2889 @node System Portability
2890 @section Portability between System Types
2891 @cindex portability, between system types
2893 In the Unix world, ``portability'' refers to porting to different Unix
2894 versions. For a GNU program, this kind of portability is desirable, but
2897 The primary purpose of GNU software is to run as part of the GNU
2898 operating system, compiled with GNU compilers, on various types of
2899 hardware. So the kinds of portability that are absolutely necessary
2900 are quite limited. It is important to support Linux-based GNU
2901 systems, since they are the form of GNU that people mainly use.
2903 Making a GNU program operate on operating systems other than the GNU
2904 system is not part of the core goal of developing a GNU package. You
2905 don't ever have to do that. However, users will ask you to do that,
2906 and cooperating with those requests is useful---as long as you don't
2907 let it dominate the project or impede the primary goal.
2909 It is good to support the other free or nearly free operating systems
2910 (for instance, *BSD). Supporting a variety of Unix-like systems is
2911 desirable, although not paramount. It is usually not too hard, so you
2912 may as well do it. But you don't have to consider it an obligation,
2913 if it does turn out to be hard.
2915 For the most part it is good to port the program to more platforms,
2916 but you should not let take up so much of your time that it hinders
2917 you from improving the program in more central ways. If it starts to
2918 do that, please tell users that you don't want to spend any more
2919 time on this---someone else must write that code, debug it, document
2920 it, etc., and then you can install it.
2922 You can reject porting patches for technical reasons too, as with any
2923 other patch that users submit. It is up to you.
2926 The easiest way to achieve portability to most Unix-like systems is to
2927 use Autoconf. It's unlikely that your program needs to know more
2928 information about the host platform than Autoconf can provide, simply
2929 because most of the programs that need such knowledge have already been
2932 Avoid using the format of semi-internal data bases (e.g., directories)
2933 when there is a higher-level alternative (@code{readdir}).
2935 @cindex non-POSIX systems, and portability
2936 As for systems that are not like Unix, such as MS-DOS, Windows, VMS, MVS,
2937 and older Macintosh systems, supporting them is often a lot of work.
2938 When that is the case, it is better to spend your time adding features
2939 that will be useful on GNU and GNU/Linux, rather than on supporting
2940 other incompatible systems.
2942 If you do support Windows, please do not abbreviate it as ``win''.
2945 Usually we write the name ``Windows'' in full, but when brevity is
2946 very important (as in file names and some symbol names), we abbreviate
2947 it to ``w''. In GNU Emacs, for instance, we use @samp{w32} in file
2948 names of Windows-specific files, but the macro for Windows
2949 conditionals is called @code{WINDOWSNT}. In principle there could
2952 It is a good idea to define the ``feature test macro''
2953 @code{_GNU_SOURCE} when compiling your C files. When you compile on GNU
2954 or GNU/Linux, this will enable the declarations of GNU library extension
2955 functions, and that will usually give you a compiler error message if
2956 you define the same function names in some other way in your program.
2957 (You don't have to actually @emph{use} these functions, if you prefer
2958 to make the program more portable to other systems.)
2960 But whether or not you use these GNU extensions, you should avoid
2961 using their names for any other meanings. Doing so would make it hard
2962 to move your code into other GNU programs.
2964 @node CPU Portability
2965 @section Portability between CPUs
2967 @cindex data types, and portability
2968 @cindex portability, and data types
2969 Even GNU systems will differ because of differences among CPU
2970 types---for example, difference in byte ordering and alignment
2971 requirements. It is absolutely essential to handle these differences.
2972 However, don't make any effort to cater to the possibility that an
2973 @code{int} will be less than 32 bits. We don't support 16-bit machines
2976 You need not cater to the possibility that @code{long} will be smaller
2977 than pointers and @code{size_t}. We know of one such platform: 64-bit
2978 programs on Microsoft Windows. If you care about making your package
2979 run on Windows using Mingw64, you would need to deal with 8-byte
2980 pointers and 4-byte @code{long}, which would break this code:
2983 printf ("size = %lu\n", (unsigned long) sizeof array);
2984 printf ("diff = %ld\n", (long) (pointer2 - pointer1));
2987 Whether to support Mingw64, and Windows in general, in your package is
2988 your choice. The GNU Project doesn't say you have any responsibility to
2989 do so. Our goal is to replace proprietary systems, including Windows,
2990 not to enhance them. If people pressure you to make your program run
2991 on Windows, and you are not interested, you can respond with, ``Switch
2992 to GNU/Linux --- your freedom depends on it.''
2994 Predefined file-size types like @code{off_t} are an exception: they are
2995 longer than @code{long} on many platforms, so code like the above won't
2996 work with them. One way to print an @code{off_t} value portably is to
2997 print its digits yourself, one by one.
2999 Don't assume that the address of an @code{int} object is also the
3000 address of its least-significant byte. This is false on big-endian
3001 machines. Thus, don't make the following mistake:
3006 while ((c = getchar ()) != EOF)
3007 write (file_descriptor, &c, 1);
3010 @noindent Instead, use @code{unsigned char} as follows. (The @code{unsigned}
3011 is for portability to unusual systems where @code{char} is signed and
3012 where there is integer overflow checking.)
3016 while ((c = getchar ()) != EOF)
3018 unsigned char u = c;
3019 write (file_descriptor, &u, 1);
3023 @cindex casting pointers to integers
3024 Avoid casting pointers to integers if you can. Such casts greatly
3025 reduce portability, and in most programs they are easy to avoid. In the
3026 cases where casting pointers to integers is essential---such as, a Lisp
3027 interpreter which stores type information as well as an address in one
3028 word---you'll have to make explicit provisions to handle different word
3029 sizes. You will also need to make provision for systems in which the
3030 normal range of addresses you can get from @code{malloc} starts far away
3034 @node System Functions
3035 @section Calling System Functions
3037 @cindex C library functions, and portability
3038 @cindex POSIX functions, and portability
3039 @cindex library functions, and portability
3040 @cindex portability, and library functions
3042 Historically, C implementations differed substantially, and many
3043 systems lacked a full implementation of ANSI/ISO C89. Nowadays,
3044 however, all practical systems have a C89-or-later compiler and GNU C
3045 supports almost all of C23 (with options to select older versions of
3046 the standard). Similarly, most systems implement POSIX.1-2008
3047 libraries and tools, and many have POSIX.1-2017.
3049 Hence, there is little reason to support old C or non-POSIX systems,
3050 and you may want to take advantage of standard C and POSIX to write
3051 clearer, more portable, or faster code. You should use standard
3052 interfaces where possible; but if GNU extensions make your program
3053 more maintainable, powerful, or otherwise better, don't hesitate to
3054 use them. In any case, don't make your own declaration of system
3055 functions; that's a recipe for conflict.
3057 Despite the standards, nearly every library function has some sort of
3058 portability issue on some system or another. Here are some examples:
3062 Names with trailing @code{/}'s are mishandled on many platforms.
3065 @code{long double} may be unimplemented; floating values Infinity and
3066 NaN are often mishandled; output for large precisions may be
3070 May return @code{int} instead of @code{ssize_t}.
3073 On Windows, @code{errno} is not set on failure.
3077 @uref{https://www.gnu.org/software/gnulib/, Gnulib} is a big help in
3078 this regard. Gnulib provides implementations of standard interfaces
3079 on many of the systems that lack them, including portable
3080 implementations of enhanced GNU interfaces, thereby making their use
3081 portable, and of POSIX interfaces, some of which are missing
3082 even on up-to-date GNU systems.
3084 @findex xmalloc, in Gnulib
3085 @findex error messages, in Gnulib
3086 @findex data structures, in Gnulib
3087 Gnulib also provides many useful non-standard interfaces; for example,
3088 C implementations of standard data structures (hash tables, binary
3089 trees), error-checking wrappers for memory allocation
3090 functions (@code{xmalloc}, @code{xrealloc}), and output of error
3093 Gnulib integrates with GNU Autoconf and Automake to remove much of the
3094 burden of writing portable code from the programmer: Gnulib makes your
3095 configure script automatically determine what features are missing and
3096 use the Gnulib code to supply the missing pieces.
3098 The Gnulib and Autoconf manuals have extensive sections on
3099 portability: @ref{Top,, Introduction, gnulib, Gnulib} and
3100 @pxref{Portable C and C++,,, autoconf, Autoconf}. Please consult them
3101 for many more details.
3104 @node Internationalization
3105 @section Internationalization
3106 @cindex internationalization
3109 GNU has a library called GNU gettext that makes it easy to translate the
3110 messages in a program into various languages. You should use this
3111 library in every program. Use English for the messages as they appear
3112 in the program, and let gettext provide the way to translate them into
3115 Using GNU gettext involves putting a call to the @code{gettext} macro
3116 around each string that might need translation---like this:
3119 printf (gettext ("Processing file '%s'..."), file);
3123 This permits GNU gettext to replace the string @code{"Processing file
3124 '%s'..."} with a translated version.
3126 Once a program uses gettext, please make a point of writing calls to
3127 @code{gettext} when you add new strings that call for translation.
3129 Using GNU gettext in a package involves specifying a @dfn{text domain
3130 name} for the package. The text domain name is used to separate the
3131 translations for this package from the translations for other packages.
3132 Normally, the text domain name should be the same as the name of the
3133 package---for example, @samp{coreutils} for the GNU core utilities.
3135 @cindex message text, and internationalization
3136 To enable gettext to work well, avoid writing code that makes
3137 assumptions about the structure of words or sentences. When you want
3138 the precise text of a sentence to vary depending on the data, use two or
3139 more alternative string constants each containing a complete sentences,
3140 rather than inserting conditionalized words or phrases into a single
3143 Here is an example of what not to do:
3146 printf ("%s is full", capacity > 5000000 ? "disk" : "floppy disk");
3149 If you apply gettext to all strings, like this,
3152 printf (gettext ("%s is full"),
3153 capacity > 5000000 ? gettext ("disk") : gettext ("floppy disk"));
3157 the translator will hardly know that "disk" and "floppy disk" are meant to
3158 be substituted in the other string. Worse, in some languages (like French)
3159 the construction will not work: the translation of the word "full" depends
3160 on the gender of the first part of the sentence; it happens to be not the
3161 same for "disk" as for "floppy disk".
3163 Complete sentences can be translated without problems:
3166 printf (capacity > 5000000 ? gettext ("disk is full")
3167 : gettext ("floppy disk is full"));
3170 A similar problem appears at the level of sentence structure with this
3174 printf ("# Implicit rule search has%s been done.\n",
3175 f->tried_implicit ? "" : " not");
3179 Adding @code{gettext} calls to this code cannot give correct results for
3180 all languages, because negation in some languages requires adding words
3181 at more than one place in the sentence. By contrast, adding
3182 @code{gettext} calls does the job straightforwardly if the code starts
3186 printf (f->tried_implicit
3187 ? "# Implicit rule search has been done.\n",
3188 : "# Implicit rule search has not been done.\n");
3191 Another example is this one:
3194 printf ("%d file%s processed", nfiles,
3195 nfiles != 1 ? "s" : "");
3199 The problem with this example is that it assumes that plurals are made
3200 by adding `s'. If you apply gettext to the format string, like this,
3203 printf (gettext ("%d file%s processed"), nfiles,
3204 nfiles != 1 ? "s" : "");
3208 the message can use different words, but it will still be forced to use
3209 `s' for the plural. Here is a better way, with gettext being applied to
3210 the two strings independently:
3213 printf ((nfiles != 1 ? gettext ("%d files processed")
3214 : gettext ("%d file processed")),
3219 But this still doesn't work for languages like Polish, which has three
3220 plural forms: one for nfiles == 1, one for nfiles == 2, 3, 4, 22, 23, 24, ...
3221 and one for the rest. The GNU @code{ngettext} function solves this problem:
3224 printf (ngettext ("%d files processed", "%d file processed", nfiles),
3230 @section Character Set
3231 @cindex character set
3233 @cindex ASCII characters
3234 @cindex non-ASCII characters
3236 Sticking to the ASCII character set (plain text, 7-bit characters) is
3237 preferred in GNU source code comments, text documents, and other
3238 contexts, unless there is good reason to do something else because of
3239 the application domain. For example, if source code deals with the
3240 French Revolutionary calendar, it is OK if its literal strings contain
3241 accented characters in month names like ``Flor@'eal''. Also, it is OK
3242 (but not required) to use non-ASCII characters to represent proper
3243 names of contributors in change logs (@pxref{Change Logs}).
3245 If you need to use non-ASCII characters, you should normally stick
3246 with one encoding, certainly within a single file. UTF-8 is likely to
3250 @node Quote Characters
3251 @section Quote Characters
3252 @cindex quote characters
3253 @cindex locale-specific quote characters
3256 @cindex opening quote
3257 @cindex single quote
3258 @cindex double quote
3259 @cindex grave accent
3260 @set txicodequoteundirected
3261 @set txicodequotebacktick
3263 In the C locale, the output of GNU programs should stick to plain
3264 ASCII for quotation characters in messages to users: preferably 0x22
3265 (@samp{"}) or 0x27 (@samp{'}) for both opening and closing quotes.
3266 Although GNU programs traditionally used 0x60 (@samp{`}) for opening
3267 and 0x27 (@samp{'}) for closing quotes, nowadays quotes @samp{`like
3268 this'} are typically rendered asymmetrically, so quoting @samp{"like
3269 this"} or @samp{'like this'} typically looks better.
3271 It is ok, but not required, for GNU programs to generate
3272 locale-specific quotes in non-C locales. For example:
3275 printf (gettext ("Processing file '%s'..."), file);
3279 Here, a French translation might cause @code{gettext} to return the
3280 string @code{"Traitement de fichier
3281 @guilsinglleft{}@tie{}%s@tie{}@guilsinglright{}..."}, yielding quotes
3282 more appropriate for a French locale.
3284 Sometimes a program may need to use opening and closing quotes
3285 directly. By convention, @code{gettext} translates the string
3286 @samp{"`"} to the opening quote and the string @samp{"'"} to the
3287 closing quote, and a program can use these translations. Generally,
3288 though, it is better to translate quote characters in the context of
3291 If the output of your program is ever likely to be parsed by another
3292 program, it is good to provide an option that makes this parsing
3293 reliable. For example, you could escape special characters using
3294 conventions from the C language or the Bourne shell. See for example
3295 the option @option{--quoting-style} of GNU @code{ls}.
3297 @clear txicodequoteundirected
3298 @clear txicodequotebacktick
3305 If you use @code{mmap} to read or write files, don't assume it either
3306 works on all files or fails for all files. It may work on some files
3309 The proper way to use @code{mmap} is to try it on the specific file for
3310 which you want to use it---and if @code{mmap} doesn't work, fall back on
3311 doing the job in another way using @code{read} and @code{write}.
3313 The reason this precaution is needed is that the GNU kernel (the HURD)
3314 provides a user-extensible file system, in which there can be many
3315 different kinds of ``ordinary files''. Many of them support
3316 @code{mmap}, but some do not. It is important to make programs handle
3317 all these kinds of files.
3321 @chapter Documenting Programs
3322 @cindex documentation
3324 A GNU program should ideally come with full free documentation, adequate
3325 for both reference and tutorial purposes. If the package can be
3326 programmed or extended, the documentation should cover programming or
3327 extending it, as well as just using it.
3330 * GNU Manuals:: Writing proper manuals.
3331 * Doc Strings and Manuals:: Compiling doc strings doesn't make a manual.
3332 * Manual Structure Details:: Specific structure conventions.
3333 * License for Manuals:: Writing the distribution terms for a manual.
3334 * Manual Credits:: Giving credit to documentation contributors.
3335 * Printed Manuals:: Mentioning the printed manual.
3336 * NEWS File:: NEWS files supplement manuals.
3337 * Change Logs:: Recording changes.
3338 * Man Pages:: Man pages are secondary.
3339 * Reading other Manuals:: How far you can go in learning
3344 @section GNU Manuals
3346 The preferred document format for the GNU system is the Texinfo
3347 formatting language. Every GNU package should (ideally) have
3348 documentation in Texinfo both for reference and for learners. Texinfo
3349 makes it possible to produce a good quality formatted book, using
3350 @TeX{}, and to generate an Info file. It is also possible to generate
3351 HTML output from Texinfo source. See the Texinfo manual, either the
3352 hardcopy, or the on-line version available through @code{info} or the
3353 Emacs Info subsystem (@kbd{C-h i}).
3355 Nowadays some other formats such as Docbook and Sgmltexi can be
3356 converted automatically into Texinfo. It is ok to produce the Texinfo
3357 documentation by conversion this way, as long as it gives good results.
3359 Make sure your manual is clear to a reader who knows nothing about the
3360 topic and reads it straight through. This means covering basic topics
3361 at the beginning, and advanced topics only later. This also means
3362 defining every specialized term when it is first used.
3364 Remember that the audience for a GNU manual (and other GNU
3365 documentation) is global, and that it will be used for years, maybe
3366 decades. This means that the reader could have very different cultural
3367 reference points. Decades from now, all but old folks will have very
3368 different cultural reference points; many things that "everyone knows
3369 about" today may be mostly forgotten.
3371 For this reason, try to avoid writing in a way that depends on
3372 cultural reference points for proper understanding, or that refers to them in
3373 ways that would impede reading for someone that doesn't recognize them.
3375 Likewise, be conservative in your choice of words (aside from technical
3376 terms), linguistic constructs, and spelling: aim to make them
3377 intelligible to readers from ten years ago. In any contest for
3378 trendiness, GNU writing should not even qualify to enter.
3380 It is ok to refer once in a rare while to spatially or temporally
3381 localized reference points or facts, if it is directly pertinent or as
3382 an aside. Changing these few things (which in any case stand out) when
3383 they no longer make sense will not be a lot of work.
3385 By contrast, it is always proper to refer to concepts of GNU and the
3386 free software movement, when they are pertinent. These are a central
3387 part of our message, so we should take advantage of opportunities to
3388 mention them. They are fundamental moral positions, so they will
3389 rarely if ever change.
3391 Programmers tend to carry over the structure of the program as the
3392 structure for its documentation. But this structure is not
3393 necessarily good for explaining how to use the program; it may be
3394 irrelevant and confusing for a user.
3396 Instead, the right way to structure documentation is according to the
3397 concepts and questions that a user will have in mind when reading it.
3398 This principle applies at every level, from the lowest (ordering
3399 sentences in a paragraph) to the highest (ordering of chapter topics
3400 within the manual). Sometimes this structure of ideas matches the
3401 structure of the implementation of the software being documented---but
3402 often they are different. An important part of learning to write good
3403 documentation is to learn to notice when you have unthinkingly
3404 structured the documentation like the implementation, stop yourself,
3405 and look for better alternatives.
3407 For example, each program in the GNU system probably ought to be
3408 documented in one manual; but this does not mean each program should
3409 have its own manual. That would be following the structure of the
3410 implementation, rather than the structure that helps the user
3413 Instead, each manual should cover a coherent @emph{topic}. For example,
3414 instead of a manual for @code{diff} and a manual for @code{diff3}, we
3415 have one manual for ``comparison of files'' which covers both of those
3416 programs, as well as @code{cmp}. By documenting these programs
3417 together, we can make the whole subject clearer.
3419 The manual which discusses a program should certainly document all of
3420 the program's command-line options and all of its commands. It should
3421 give examples of their use. But don't organize the manual as a list
3422 of features. Instead, organize it logically, by subtopics. Address
3423 the questions that a user will ask when thinking about the job that
3424 the program does. Don't just tell the reader what each feature can
3425 do---say what jobs it is good for, and show how to use it for those
3426 jobs. Explain what is recommended usage, and what kinds of usage
3429 In general, a GNU manual should serve both as tutorial and reference.
3430 It should be set up for convenient access to each topic through Info,
3431 and for reading straight through (appendixes aside). A GNU manual
3432 should give a good introduction to a beginner reading through from the
3433 start, and should also provide all the details that hackers want.
3434 The Bison manual is a good example of this---please take a look at it
3435 to see what we mean.
3437 That is not as hard as it first sounds. Arrange each chapter as a
3438 logical breakdown of its topic, but order the sections, and write their
3439 text, so that reading the chapter straight through makes sense. Do
3440 likewise when structuring the book into chapters, and when structuring a
3441 section into paragraphs. The watchword is, @emph{at each point, address
3442 the most fundamental and important issue raised by the preceding text.}
3444 If necessary, add extra chapters at the beginning of the manual which
3445 are purely tutorial and cover the basics of the subject. These provide
3446 the framework for a beginner to understand the rest of the manual. The
3447 Bison manual provides a good example of how to do this.
3449 To serve as a reference, a manual should have an Index that lists all
3450 the functions, variables, options, and important concepts that are
3451 part of the program. One combined Index should do for a short manual,
3452 but sometimes for a complex package it is better to use multiple
3453 indices. The Texinfo manual includes advice on preparing good index
3454 entries, see @ref{Index Entries, , Making Index Entries, texinfo, GNU
3455 Texinfo}, and see @ref{Indexing Commands, , Defining the Entries of an
3456 Index, texinfo, GNU Texinfo}.
3458 Don't use Unix man pages as a model for how to write GNU documentation;
3459 most of them are terse, badly structured, and give inadequate
3460 explanation of the underlying concepts. (There are, of course, some
3461 exceptions.) Also, Unix man pages use a particular format which is
3462 different from what we use in GNU manuals.
3464 Please include an email address in the manual for where to report
3465 bugs @emph{in the text of the manual}.
3467 Please do not use the term ``pathname'' that is used in Unix
3468 documentation; use ``file name'' (two words) instead. We use the term
3469 ``path'' only for search paths, which are lists of directory names.
3471 Please do not use the term ``illegal'' to refer to erroneous input to
3472 a computer program. Please use ``invalid'' for this, and reserve the
3473 term ``illegal'' for activities prohibited by law.
3475 Please do not write @samp{()} after a function name just to indicate
3476 it is a function. @code{foo ()} is not a function, it is a function
3477 call with no arguments.
3479 Whenever possible, please stick to the active voice, avoiding the
3480 passive, and use the present tense, not the future tense. For
3481 instance, write ``The function @code{foo} returns a list containing
3482 @var{a} and @var{b}'' rather than ``A list containing @var{a} and
3483 @var{b} will be returned.'' One advantage of the active voice is it
3484 requires you to state the subject of the sentence; with the passive
3485 voice, you might omit the subject, which leads to vagueness.
3487 It is proper to use the future tense when grammar demands it, as in,
3488 ``If you type @kbd{x}, the computer will self-destruct in 10
3491 @node Doc Strings and Manuals
3492 @section Doc Strings and Manuals
3494 Some programming systems, such as Emacs, provide a documentation string
3495 for each function, command or variable. You may be tempted to write a
3496 reference manual by compiling the documentation strings and writing a
3497 little additional text to go around them---but you must not do it. That
3498 approach is a fundamental mistake. The text of well-written
3499 documentation strings will be entirely wrong for a manual.
3501 A documentation string needs to stand alone---when it appears on the
3502 screen, there will be no other text to introduce or explain it.
3503 Meanwhile, it can be rather informal in style.
3505 The text describing a function or variable in a manual must not stand
3506 alone; it appears in the context of a section or subsection. Other text
3507 at the beginning of the section should explain some of the concepts, and
3508 should often make some general points that apply to several functions or
3509 variables. The previous descriptions of functions and variables in the
3510 section will also have given information about the topic. A description
3511 written to stand alone would repeat some of that information; this
3512 redundancy looks bad. Meanwhile, the informality that is acceptable in
3513 a documentation string is totally unacceptable in a manual.
3515 The only good way to use documentation strings in writing a good manual
3516 is to use them as a source of information for writing good text.
3518 @node Manual Structure Details
3519 @section Manual Structure Details
3520 @cindex manual structure
3522 The title page of the manual should state the version of the programs or
3523 packages documented in the manual. The Top node of the manual should
3524 also contain this information. If the manual is changing more
3525 frequently than or independent of the program, also state a version
3526 number for the manual in both of these places.
3528 Each program documented in the manual should have a node named
3529 @samp{@var{program} Invocation} or @samp{Invoking @var{program}}. This
3530 node (together with its subnodes, if any) should describe the program's
3531 command line arguments and how to run it (the sort of information people
3532 would look for in a man page). Start with an @samp{@@example}
3533 containing a template for all the options and arguments that the program
3536 Alternatively, put a menu item in some menu whose item name fits one of
3537 the above patterns. This identifies the node which that item points to
3538 as the node for this purpose, regardless of the node's actual name.
3540 The @samp{--usage} feature of the Info reader looks for such a node
3541 or menu item in order to find the relevant text, so it is essential
3542 for every Texinfo file to have one.
3544 If one manual describes several programs, it should have such a node for
3545 each program described in the manual.
3547 @node License for Manuals
3548 @section License for Manuals
3549 @cindex license for manuals
3551 Please use the GNU Free Documentation License for all GNU manuals that
3552 are more than a few pages long. Likewise for a collection of short
3553 documents---you only need one copy of the GNU FDL for the whole
3554 collection. For a single short document, you can use a very permissive
3555 non-copyleft license, to avoid taking up space with a long license.
3557 See @uref{https://www.gnu.org/copyleft/fdl-howto.html} for more explanation
3558 of how to employ the GFDL.
3560 Note that it is not obligatory to include a copy of the GNU GPL or GNU
3561 LGPL in a manual whose license is neither the GPL nor the LGPL@. It can
3562 be a good idea to include the program's license in a large manual; in a
3563 short manual, whose size would be increased considerably by including
3564 the program's license, it is probably better not to include it.
3566 @node Manual Credits
3567 @section Manual Credits
3568 @cindex credits for manuals
3570 Please credit the principal human writers of the manual as the authors,
3571 on the title page of the manual. If a company sponsored the work, thank
3572 the company in a suitable place in the manual, but do not cite the
3573 company as an author.
3575 @node Printed Manuals
3576 @section Printed Manuals
3578 The FSF publishes some GNU manuals in printed form. To encourage sales
3579 of these manuals, the on-line versions of the manual should mention at
3580 the very start that the printed manual is available and should point at
3581 information for getting it---for instance, with a link to the page
3582 @url{https://www.gnu.org/order/order.html}. This should not be included
3583 in the printed manual, though, because there it is redundant.
3585 It is also useful to explain in the on-line forms of the manual how the
3586 user can print out the manual from the sources.
3589 @section The NEWS File
3590 @cindex @file{NEWS} file
3592 In addition to its manual, the package should have a file named
3593 @file{NEWS} which contains a list of user-visible changes worth
3594 mentioning. In each new release, add items to the front of the file and
3595 identify the version they pertain to. Don't discard old items; leave
3596 them in the file after the newer items. This way, a user upgrading from
3597 any previous version can see what is new.
3599 If the @file{NEWS} file gets very long, move some of the older items
3600 into a file named @file{ONEWS} and put a note at the end referring the
3604 @section Change Logs
3607 Keep a change log to describe all the changes made to program source
3608 files. The purpose of this is so that people investigating bugs in the
3609 future will know about the changes that might have introduced the bug.
3610 Often a new bug can be found by looking at what was recently changed.
3611 More importantly, change logs can help you eliminate conceptual
3612 inconsistencies between different parts of a program, by giving you a
3613 history of how the conflicting concepts arose, who they came from, and
3614 why the conflicting changes were made.
3616 @cindex software forensics, and change logs
3617 Therefore, change logs should be detailed enough and accurate enough
3618 to provide the information commonly required for such @dfn{software
3619 forensics}. Specifically, change logs should make finding answers to
3620 the following questions easy:
3624 What changes affected a particular source file?
3627 Was a particular source file renamed or moved, and if so, as part of
3631 What changes affected a given function or macro or definition of a
3635 Was a function (or a macro or the definition of a data structure)
3636 renamed or moved from another file, and if so, as part of which
3640 What changes deleted a function (or macro or data structure)?
3643 What was the rationale for a given change, and what were its main
3647 Is there any additional information regarding the change, and if so,
3648 where can it be found?
3652 @cindex version control system, for keeping change logs
3653 Historically, change logs were maintained on specially formatted
3654 files. Nowadays, projects commonly keep their source files under a
3655 @dfn{version control system} (VCS), such as Git,
3656 Subversion, or Mercurial. If the VCS repository is publicly
3657 accessible, and changes are committed to it separately (one commit for
3658 each logical changeset) and record the authors of each change, then
3659 the information recorded by the VCS can be used to produce
3660 the change logs out of VCS logs, and to answer the above
3661 questions by using the suitable VCS commands. (However, the
3662 VCS log messages still need to provide some supporting
3663 information, as described below.) Projects that maintain such
3664 VCS repositories can decide not to maintain separate change
3665 log files, and instead rely on the VCS to keep the change
3668 If you decide not to maintain separate change log files, you should
3669 still consider providing them in the release tarballs, for the benefit
3670 of users who'd like to review the change logs without accessing the
3671 project's VCS repository. Scripts exist that can produce
3672 @file{ChangeLog} files from the VCS logs; for example, the
3673 @file{gitlog-to-changelog} script, which is part of Gnulib, can do
3674 that for Git repositories. In Emacs, the command @kbd{C-x v a}
3675 (@code{vc-update-change-log}) does the job of incrementally updating a
3676 @file{ChangeLog} file from the VCS logs.
3678 If separate change log files @emph{are} maintained, they are normally
3679 called @file{ChangeLog}, and each such file covers an entire
3680 directory. Each directory can have its own change log file, or a
3681 directory can use the change log of its parent directory---it's up to
3685 * Change Log Concepts::
3686 * Style of Change Logs::
3688 * Conditional Changes::
3689 * Indicating the Part Changed::
3692 @node Change Log Concepts
3693 @subsection Change Log Concepts and Conventions
3695 @cindex changeset, in a change log
3696 @cindex batch of changes, in a change log
3697 You can think of the change log as a conceptual ``undo list'' which
3698 states how earlier versions were different from the current version.
3699 People can see the current version; they don't need the change log to
3700 tell them what is in it. What they want from a change log is a clear
3701 explanation of how the earlier version differed. Each @dfn{entry} in
3702 a change log describes either an individual change or the smallest
3703 batch of changes that belong together, also known as a @dfn{changeset}.
3705 @cindex title, change log entry
3706 @cindex header line, change log entry
3707 It is a good idea to start the change log entry with a @dfn{header
3708 line}: a single line that is a complete sentence which summarizes the
3709 changeset. If you keep the change log in a VCS, this
3710 should be a requirement, as VCS commands that show the
3711 change log in abbreviated form, such as @kbd{git log --oneline}, treat
3712 the header line specially. (In a @file{ChangeLog} file, the header
3713 line follows a line that says who was the author of the change and
3714 when it was installed.)
3716 @cindex description, change log entry
3717 Follow the change log entry's header line with a description of the
3718 overall change. This should be as long as needed to give a clear
3719 description. Pay special attention to aspects of the changeset not
3720 easily gleaned from the diffs or from the names of modified files and
3721 functions: the overall idea of the change and the need for it, and the
3722 relations, if any, between changes made to different files/functions.
3723 If the change or its reasons were discussed on some public forum, such
3724 as the project's issue tracker or mailing list, it is a good idea to
3725 summarize the main points of that discussion in the change's
3726 description, and include a pointer to that discussion or the issue ID
3727 for those who'd like to read it in full.
3729 The best place to explain how parts of the new code work with other code
3730 is in comments in the code, not in the change log.
3732 If you think that a change calls for explanation of @emph{why} the
3733 change was needed---that is, what problem the old code had such that
3734 it required this change---you're probably right. Please put the
3735 explanation in comments in the code, where people will see it whenever
3736 they see the code. An example of such an explanation is, ``This
3737 function used to be iterative, but that failed when MUMBLE was a
3738 tree.'' (Though such a simple reason would not need this kind of
3741 The best place for other kinds of explanation of the change is in the
3742 change log entry. In particular, comments usually will not say why
3743 some code was deleted or moved to another place---that belongs to the
3744 description of the change which did that.
3746 Following the free-text description of the change, it is a good idea
3747 to give a list of names of the entities or definitions that you
3748 changed, according to the files they are in, and what was changed in
3749 each one. @xref{Style of Change Logs}. If a project uses a modern
3750 VCS to keep the change log information, as described in
3751 @ref{Change Logs}, explicitly listing the files and functions that
3752 were changed is not strictly necessary, and in some cases (like
3753 identical mechanical changes in many places) even tedious. It is up
3754 to you to decide whether to allow your project's developers to omit
3755 the list of changed files and functions from the log entries, and
3756 whether to allow such omissions under some specific conditions.
3757 However, while making this decision, please consider the following
3758 benefits of providing the list of changed entities with each change:
3762 Generation of useful @file{ChangeLog} files from VCS logs
3763 becomes more difficult if the change log entries don't list the
3764 modified functions/macros, because VCS commands cannot
3765 reliably reproduce their names from the commit information alone. For
3766 example, when there is a change in the header part of a function
3767 definition, the heading of the diff hunk as shown in the VCS log
3768 commands will name the wrong function as being modified (usually, the
3769 function defined before the one being modified), so using those diffs
3770 to glean the names of the modified functions will produce inaccurate
3771 results. You will need to use specialized scripts, such as gnulib's
3772 @file{vcs-to-changelog.py}, mentioned below, to solve these
3773 difficulties, and make sure it supports the source languages used by
3777 While modern VCS commands, such as Git's @kbd{git log -L}
3778 and @kbd{git log -G}, provide powerful means for finding changes that
3779 affected a certain function or macro or data structure (and thus might
3780 make @file{ChangeLog} files unnecessary if you have the repository
3781 available), they can sometimes fail. For example, @kbd{git log -L}
3782 doesn't support syntax of some programming languages out of the box.
3783 Mentioning the modified functions/macros explicitly allows finding the
3784 related changes simply and reliably.
3787 Some VCS commands have difficulties or limitations when
3788 tracking changes across file moves or renames. Again, if the entities
3789 are mentioned explicitly, those difficulties can be overcome.
3792 Users that review changes using the generated @file{ChangeLog} files
3793 may not have the repository and the VCS commands available
3794 to them. Naming the modified entities alleviates that problem.
3798 For these reasons, providing lists of modified files and functions
3799 with each change makes the change logs more useful, and we therefore
3800 recommend to include them whenever possible and practical.
3802 It is also possible to generate the lists naming the modified entities
3803 by running a script. One such script is @file{mklog.py} (written in
3804 Python 3); it is used by the @code{GCC} project. Gnulib provides
3805 another variant of such a script, called @file{vcs-to-changelog.py},
3806 part of the @code{vcs-to-changelog} module. Note that these scripts
3807 currently support fewer programming languages than the manual commands
3808 provided by Emacs (@pxref{Style of Change Logs}). Therefore, the
3809 above mentioned method of generating the @code{ChangeLog} file from
3810 the VCS commit history, for instance via the
3811 @code{gitlog-to-changelog} script, usually gives better
3812 results---provided that the contributors stick to providing good
3815 @node Style of Change Logs
3816 @subsection Style of Change Logs
3817 @cindex change logs, style
3819 Here are some simple examples of change log entries, starting with the
3820 header line that says who made the change and when it was installed,
3821 followed by descriptions of specific changes. (These examples are
3822 drawn from Emacs.) Keep in mind that the line which shows the date of
3823 the change and the author's name and email address is needed only in a
3824 separate @file{ChangeLog} file, not when the change logs are kept in a
3828 2019-08-29 Noam Postavsky <npostavs@@gmail.com>
3830 Handle completely undecoded input in term (Bug#29918)
3832 * lisp/term.el (term-emulate-terminal): Avoid errors if the whole
3833 decoded string is eight-bit characters. Don't attempt to save the
3834 string for next iteration in that case.
3835 * test/lisp/term-tests.el (term-decode-partial)
3836 (term-undecodable-input): New tests.
3838 2019-06-15 Paul Eggert <eggert@@cs.ucla.edu>
3840 Port to platforms where tputs is in libtinfow
3842 * configure.ac (tputs_library): Also try tinfow, ncursesw (Bug#33977).
3844 2019-02-08 Eli Zaretskii <eliz@@gnu.org>
3846 Improve documentation of 'date-to-time' and 'parse-time-string'
3848 * doc/lispref/os.texi (Time Parsing): Document
3849 'parse-time-string', and refer to it for the description of
3850 the argument of 'date-to-time'.
3852 * lisp/calendar/time-date.el (date-to-time): Refer in the doc
3853 string to 'parse-time-string' for more information about the
3854 format of the DATE argument. (Bug#34303)
3857 If you mention the names of the modified functions or variables, it's
3858 important to name them in full. Don't abbreviate function or variable
3859 names, and don't combine them. Subsequent maintainers will often
3860 search for a function name to find all the change log entries that
3861 pertain to it; if you abbreviate the name, they won't find it when
3864 For example, some people are tempted to abbreviate groups of function
3865 names by writing @samp{* register.el (@{insert,jump-to@}-register)};
3866 this is not a good idea, since searching for @code{jump-to-register} or
3867 @code{insert-register} would not find that entry.
3869 Separate unrelated change log entries with blank lines. Don't put
3870 blank lines between individual changes of an entry. You can omit the
3871 file name and the asterisk when successive individual changes are in
3874 Break long lists of function names by closing continued lines with
3875 @samp{)}, rather than @samp{,}, and opening the continuation with
3876 @samp{(}. This makes highlighting in Emacs work better.
3880 * src/keyboard.c (menu_bar_items, tool_bar_items)
3881 (Fexecute_extended_command): Deal with 'keymap' property.
3884 The easiest way to add an entry to @file{ChangeLog} is with the Emacs
3885 command @kbd{M-x add-change-log-entry}, or its variant @kbd{C-x 4 a}
3886 (@code{add-change-log-entry-other-window}). This automatically
3887 collects the name of the changed file and the changed function or
3888 variable, and formats a change log entry according to the conventions
3889 described above, leaving it up to you to describe the changes you made
3890 to that function or variable.
3892 When you install someone else's changes, put the contributor's name in
3893 the change log entry rather than in the text of the entry. In other
3897 2002-07-14 John Doe <jdoe@@gnu.org>
3899 * sewing.c: Make it sew.
3906 2002-07-14 Usual Maintainer <usual@@gnu.org>
3908 * sewing.c: Make it sew. Patch by jdoe@@gnu.org.
3911 When committing someone else's changes into a VCS, use the
3912 VCS features to specify the author. For example, with Git,
3913 use @kbd{git commit --author=@var{author}}.
3915 As for the date, that should be the date you applied the change.
3916 (With a VCS, use the appropriate command-line switches,
3917 e.g., @kbd{git commit --date=@var{date}}.)
3919 Modern VCS have commands to apply changes sent via email
3920 (e.g., Git has @kbd{git am}); in that case the author of the changeset
3921 and the date it was made will be automatically gleaned from the email
3922 message and recorded in the repository. If the patches are prepared
3923 with suitable VCS commands, such as @kbd{git format-patch},
3924 the email message body will also have the original author of the
3925 changeset, so resending or forwarding the message will not interfere
3926 with attributing the changes to their author. Thus, we recommend that
3927 you request your contributors to use commands such as @kbd{git
3928 format-patch} to prepare the patches.
3930 @node Simple Changes
3931 @subsection Simple Changes
3933 Certain simple kinds of changes don't need much detail in the change
3936 If the description of the change is short enough, it can serve as its
3940 2019-08-29 Eli Zaretskii <eliz@@gnu.org>
3942 * lisp/simple.el (kill-do-not-save-duplicates): Doc fix. (Bug#36827)
3945 When you change the calling sequence of a function in a simple fashion,
3946 and you change all the callers of the function to use the new calling
3947 sequence, there is no need to make individual entries for all the
3948 callers that you changed. Just write in the entry for the function
3949 being called, ``All callers changed''---like this:
3952 * keyboard.c (Fcommand_execute): New arg SPECIAL.
3953 All callers changed.
3956 When you change just comments or doc strings, it is enough to write an
3957 entry for the file, without mentioning the functions. Just ``Doc
3958 fixes'' is enough for the change log.
3960 When you make changes in many files that follow mechanically from one
3961 underlying change, it is enough to describe the underlying change.
3962 Here's an example of a change that affects all of the files in the
3966 2019-01-07 Paul Eggert <eggert@@cs.ucla.edu>
3968 Update copyright year to 2019
3970 Run 'TZ=UTC0 admin/update-copyright $(git ls-files)'.
3973 Test suite files are part of the software, so we recommend treating
3974 them as code for change-log purposes.
3976 There's no technical need to make change log entries for non-software
3977 files (manuals, help files, media files, etc.). This is because they
3978 are not susceptible to bugs that are hard to understand. To correct
3979 an error, you need not know the history of the erroneous passage; it
3980 is enough to compare what the file says with the actual facts.
3982 However, you should keep change logs for non-software files when the
3983 project gets copyright assignments from its contributors, so as to
3984 make the records of authorship more accurate. For that reason, we
3985 recommend to keep change logs for Texinfo sources of your project's
3988 @node Conditional Changes
3989 @subsection Conditional Changes
3990 @cindex conditional changes, and change logs
3991 @cindex change logs, conditional changes
3993 Source files can often contain code that is conditional to build-time
3994 or static conditions. For example, C programs can contain
3995 compile-time @code{#if} conditionals; programs implemented in
3996 interpreted languages can contain module imports of function
3997 definitions that are only performed for certain versions of the
3998 interpreter; and Automake @file{Makefile.am} files can contain
3999 variable definitions or target declarations that are only to be
4000 considered if a configure-time Automake conditional is true.
4002 Many changes are conditional as well: sometimes you add a new variable,
4003 or function, or even a new program or library, which is entirely
4004 dependent on a build-time condition. It is useful to indicate
4005 in the change log the conditions for which a change applies.
4007 Our convention for indicating conditional changes is to use
4008 @emph{square brackets around the name of the condition}.
4010 Conditional changes can happen in numerous scenarios and with many
4011 variations, so here are some examples to help clarify. This first
4012 example describes changes in C, Perl, and Python files which are
4013 conditional but do not have an associated function or entity name:
4016 * xterm.c [SOLARIS2]: Include <string.h>.
4017 * FilePath.pm [$^O eq 'VMS']: Import the VMS::Feature module.
4018 * framework.py [sys.version_info < (2, 6)]: Make "with" statement
4019 available by importing it from __future__,
4020 to support also python 2.5.
4023 Our other examples will for simplicity be limited to C, as the minor
4024 changes necessary to adapt them to other languages should be
4027 Next, here is an entry describing a new definition which is entirely
4028 conditional: the C macro @code{FRAME_WINDOW_P} is defined (and used)
4029 only when the macro @code{HAVE_X_WINDOWS} is defined:
4032 * frame.h [HAVE_X_WINDOWS] (FRAME_WINDOW_P): Macro defined.
4035 Next, an entry for a change within the function @code{init_display},
4036 whose definition as a whole is unconditional, but the changes
4037 themselves are contained in a @samp{#ifdef HAVE_LIBNCURSES}
4041 * dispnew.c (init_display) [HAVE_LIBNCURSES]: If X, call tgetent.
4044 Finally, here is an entry for a change that takes effect only when
4045 a certain macro is @emph{not} defined:
4048 * host.c (gethostname) [!HAVE_SOCKETS]: Replace with winsock version.
4052 @node Indicating the Part Changed
4053 @subsection Indicating the Part Changed
4055 Indicate the part of a function which changed by using angle brackets
4056 enclosing an indication of what the changed part does. Here is an entry
4057 for a change in the part of the function @code{sh-while-getopts} that
4058 deals with @code{sh} commands:
4061 * progmodes/sh-script.el (sh-while-getopts) <sh>: Handle case that
4062 user-specified option string is empty.
4070 In the GNU project, man pages are secondary. It is not necessary or
4071 expected for every GNU program to have a man page, but some of them do.
4072 It's your choice whether to include a man page in your program.
4074 When you make this decision, consider that supporting a man page
4075 requires continual effort each time the program is changed. The time
4076 you spend on the man page is time taken away from more useful work.
4078 For a simple program which changes little, updating the man page may be
4079 a small job. Then there is little reason not to include a man page, if
4082 For a large program that changes a great deal, updating a man page may
4083 be a substantial burden. If a user offers to donate a man page, you may
4084 find this gift costly to accept. It may be better to refuse the man
4085 page unless the same person agrees to take full responsibility for
4086 maintaining it---so that you can wash your hands of it entirely. If
4087 this volunteer later ceases to do the job, then don't feel obliged to
4088 pick it up yourself; it may be better to withdraw the man page from the
4089 distribution until someone else agrees to update it.
4091 When a program changes only a little, you may feel that the
4092 discrepancies are small enough that the man page remains useful without
4093 updating. If so, put a prominent note near the beginning of the man
4094 page stating that you don't maintain it and that the Texinfo manual
4095 is more authoritative. The note should say how to access the Texinfo
4098 Be sure that man pages include a copyright statement and free license.
4099 The simple all-permissive license is appropriate for simple man pages
4100 (@pxref{License Notices for Other Files,,,maintain,Information for GNU
4103 For long man pages, with enough explanation and documentation that
4104 they can be considered true manuals, use the GFDL (@pxref{License for
4107 Finally, the GNU help2man program
4108 (@uref{https://www.gnu.org/software/help2man/}) is one way to automate
4109 generation of a man page, in this case from @option{--help} output.
4110 This is sufficient in many cases.
4112 @node Reading other Manuals
4113 @section Reading other Manuals
4115 There may be non-free books or documentation files that describe the
4116 program you are documenting.
4118 It is ok to use these documents for reference, just as the author of a
4119 new algebra textbook can read other books on algebra. A large portion
4120 of any non-fiction book consists of facts, in this case facts about how
4121 a certain program works, and these facts are necessarily the same for
4122 everyone who writes about the subject. But be careful not to copy your
4123 outline structure, wording, tables or examples from preexisting non-free
4124 documentation. Copying from free documentation may be ok; please check
4125 with the FSF about the individual case.
4127 @node Managing Releases
4128 @chapter The Release Process
4131 Making a release is more than just bundling up your source files in a
4132 tar file and putting it up for FTP@. You should set up your software so
4133 that it can be configured to run on a variety of systems. Your Makefile
4134 should conform to the GNU standards described below, and your directory
4135 layout should also conform to the standards discussed below. Doing so
4136 makes it easy to include your package into the larger framework of
4140 * Configuration:: How configuration of GNU packages should work.
4141 * Makefile Conventions:: Makefile conventions.
4142 * Releases:: Making releases
4146 @section How Configuration Should Work
4147 @cindex program configuration
4150 Each GNU distribution should come with a shell script named
4151 @code{configure}. This script is given arguments which describe the
4152 kind of machine and system you want to compile the program for.
4153 The @code{configure} script must record the configuration options so
4154 that they affect compilation.
4156 The description here is the specification of the interface for the
4157 @code{configure} script in GNU packages. Many packages implement it
4158 using GNU Autoconf (@pxref{Top,, Introduction, autoconf, Autoconf})
4159 and/or GNU Automake (@pxref{Top,, Introduction, automake, Automake}),
4160 but you do not have to use these tools. You can implement it any way
4161 you like; for instance, by making @code{configure} be a wrapper around
4162 a completely different configuration system.
4164 Another way for the @code{configure} script to operate is to make a
4165 link from a standard name such as @file{config.h} to the proper
4166 configuration file for the chosen system. If you use this technique,
4167 the distribution should @emph{not} contain a file named
4168 @file{config.h}. This is so that people won't be able to build the
4169 program without configuring it first.
4171 Another thing that @code{configure} can do is to edit the Makefile. If
4172 you do this, the distribution should @emph{not} contain a file named
4173 @file{Makefile}. Instead, it should include a file @file{Makefile.in} which
4174 contains the input used for editing. Once again, this is so that people
4175 won't be able to build the program without configuring it first.
4177 If @code{configure} does write the @file{Makefile}, then @file{Makefile}
4178 should have a target named @file{Makefile} which causes @code{configure}
4179 to be rerun, setting up the same configuration that was set up last
4180 time. The files that @code{configure} reads should be listed as
4181 dependencies of @file{Makefile}.
4183 All the files which are output from the @code{configure} script should
4184 have comments at the beginning stating that they were generated
4185 automatically using @code{configure}. This is so that users won't think
4186 of trying to edit them by hand.
4188 The @code{configure} script should write a file named @file{config.status}
4189 which describes which configuration options were specified when the
4190 program was last configured. This file should be a shell script which,
4191 if run, will recreate the same configuration.
4193 The @code{configure} script should accept an option of the form
4194 @samp{--srcdir=@var{dirname}} to specify the directory where sources are found
4195 (if it is not the current directory). This makes it possible to build
4196 the program in a separate directory, so that the actual source directory
4199 If the user does not specify @samp{--srcdir}, then @code{configure} should
4200 check both @file{.} and @file{..} to see if it can find the sources. If
4201 it finds the sources in one of these places, it should use them from
4202 there. Otherwise, it should report that it cannot find the sources, and
4203 should exit with nonzero status.
4205 Usually the easy way to support @samp{--srcdir} is by editing a
4206 definition of @code{VPATH} into the Makefile. Some rules may need to
4207 refer explicitly to the specified source directory. To make this
4208 possible, @code{configure} can add to the Makefile a variable named
4209 @code{srcdir} whose value is precisely the specified directory.
4211 In addition, the @samp{configure} script should take options
4212 corresponding to most of the standard directory variables
4213 (@pxref{Directory Variables}). Here is the list:
4216 --prefix --exec-prefix --bindir --sbindir --libexecdir --sysconfdir
4217 --sharedstatedir --localstatedir --runstatedir
4218 --libdir --includedir --oldincludedir
4219 --datarootdir --datadir --infodir --localedir --mandir --docdir
4220 --htmldir --dvidir --pdfdir --psdir
4223 The @code{configure} script should also take an argument which specifies the
4224 type of system to build the program for. This argument should look like
4228 @var{cpu}-@var{company}-@var{system}
4231 For example, an Athlon-based GNU/Linux system might be
4232 @samp{i686-pc-linux-gnu}.
4234 The @code{configure} script needs to be able to decode all plausible
4235 alternatives for how to describe a machine. Thus,
4236 @samp{athlon-pc-gnu/linux} would be a valid alias. There is a shell
4238 @uref{https://git.savannah.gnu.org/cgit/config.git/plain/config.sub,
4239 @file{config.sub}} that you can use as a subroutine to validate system
4240 types and canonicalize aliases.
4242 The @code{configure} script should also take the option
4243 @option{--build=@var{buildtype}}, which should be equivalent to a
4244 plain @var{buildtype} argument. For example, @samp{configure
4245 --build=i686-pc-linux-gnu} is equivalent to @samp{configure
4246 i686-pc-linux-gnu}. When the build type is not specified by an option
4247 or argument, the @code{configure} script should normally guess it using
4249 @uref{https://git.savannah.gnu.org/cgit/config.git/plain/config.guess,
4250 @file{config.guess}}.
4252 @cindex optional features, configure-time
4253 Other options are permitted to specify in more detail the software
4254 or hardware present on the machine, to include or exclude optional parts
4255 of the package, or to adjust the name of some tools or arguments to them:
4258 @item --enable-@var{feature}@r{[}=@var{parameter}@r{]}
4259 Configure the package to build and install an optional user-level
4260 facility called @var{feature}. This allows users to choose which
4261 optional features to include. Giving an optional @var{parameter} of
4262 @samp{no} should omit @var{feature}, if it is built by default.
4264 No @samp{--enable} option should @strong{ever} cause one feature to
4265 replace another. No @samp{--enable} option should ever substitute one
4266 useful behavior for another useful behavior. The only proper use for
4267 @samp{--enable} is for questions of whether to build part of the program
4270 @item --with-@var{package}
4271 @c @r{[}=@var{parameter}@r{]}
4272 The package @var{package} will be installed, so configure this package
4273 to work with @var{package}.
4275 @c Giving an optional @var{parameter} of
4276 @c @samp{no} should omit @var{package}, if it is used by default.
4278 Possible values of @var{package} include
4279 @samp{gnu-as} (or @samp{gas}), @samp{gnu-ld}, @samp{gnu-libc},
4285 Do not use a @samp{--with} option to specify the file name to use to
4286 find certain files. That is outside the scope of what @samp{--with}
4289 @item @var{variable}=@var{value}
4290 Set the value of the variable @var{variable} to @var{value}. This is
4291 used to override the default values of commands or arguments in the
4292 build process. For example, the user could issue @samp{configure
4293 CFLAGS=-g CXXFLAGS=-g} to build with debugging information and without
4294 the default optimization.
4296 Specifying variables as arguments to @code{configure}, like this:
4300 is preferable to setting them in environment variables:
4304 as it helps to recreate the same configuration later with
4305 @file{config.status}. However, both methods should be supported.
4308 All @code{configure} scripts should accept all of the ``detail''
4309 options and the variable settings, whether or not they make any
4310 difference to the particular package at hand. In particular, they
4311 should accept any option that starts with @samp{--with-} or
4312 @samp{--enable-}. This is so users will be able to configure an
4313 entire GNU source tree at once with a single set of options.
4315 You will note that the categories @samp{--with-} and @samp{--enable-}
4316 are narrow: they @strong{do not} provide a place for any sort of option
4317 you might think of. That is deliberate. We want to limit the possible
4318 configuration options in GNU software. We do not want GNU programs to
4319 have idiosyncratic configuration options.
4321 Packages that perform part of the compilation process may support
4322 cross-compilation. In such a case, the host and target machines for the
4323 program may be different.
4325 The @code{configure} script should normally treat the specified type of
4326 system as both the host and the target, thus producing a program which
4327 works for the same type of machine that it runs on.
4329 To compile a program to run on a host type that differs from the build
4330 type, use the configure option @option{--host=@var{hosttype}}, where
4331 @var{hosttype} uses the same syntax as @var{buildtype}. The host type
4332 normally defaults to the build type.
4334 To configure a cross-compiler, cross-assembler, or what have you, you
4335 should specify a target different from the host, using the configure
4336 option @samp{--target=@var{targettype}}. The syntax for
4337 @var{targettype} is the same as for the host type. So the command would
4341 ./configure --host=@var{hosttype} --target=@var{targettype}
4344 The target type normally defaults to the host type.
4345 Programs for which cross-operation is not meaningful need not accept the
4346 @samp{--target} option, because configuring an entire operating system for
4347 cross-operation is not a meaningful operation.
4349 Some programs have ways of configuring themselves automatically. If
4350 your program is set up to do this, your @code{configure} script can simply
4351 ignore most of its arguments.
4353 @comment The makefile standards are in a separate file that is also
4354 @comment included by make.texinfo. Done by roland@gnu.ai.mit.edu on 1/6/93.
4355 @comment For this document, turn chapters into sections, etc.
4357 @include make-stds.texi
4361 @section Making Releases
4364 @cindex version numbers, for releases
4365 You should identify each release with a pair of version numbers, a
4366 major version and a minor. We have no objection to using more than
4367 two numbers, but it is very unlikely that you really need them.
4369 Package the distribution of @code{Foo version 69.96} up in a gzipped tar
4370 file with the name @file{foo-69.96.tar.gz}. It should unpack into a
4371 subdirectory named @file{foo-69.96}.
4373 Building and installing the program should never modify any of the files
4374 contained in the distribution. This means that all the files that form
4375 part of the program in any way must be classified into @dfn{source
4376 files} and @dfn{non-source files}. Source files are written by humans
4377 and never changed automatically; non-source files are produced from
4378 source files by programs under the control of the Makefile.
4380 @cindex @file{README} file
4381 The distribution should contain a file named @file{README} with a
4382 general overview of the package:
4385 @item the name of the package;
4387 @item the version number of the package, or refer to where in the
4388 package the version can be found;
4390 @item a general description of what the package does;
4392 @item a reference to the file @file{INSTALL}, which
4393 should in turn contain an explanation of the installation procedure;
4395 @item a brief explanation of any unusual top-level directories or
4396 files, or other hints for readers to find their way around the source;
4398 @item a reference to the file which contains the copying conditions.
4399 The GNU GPL, if used, should be in a file called @file{COPYING}. If
4400 the GNU LGPL is used, it should be in a file called
4401 @file{COPYING.LESSER}.
4404 Naturally, all the source files must be in the distribution. It is
4405 okay to include non-source files in the distribution along with the
4406 source files they are generated from, provided they are up-to-date
4407 with the source they are made from, and machine-independent, so that
4408 normal building of the distribution will never modify them. We
4409 commonly include non-source files produced by Autoconf, Automake,
4410 Bison, @code{flex}, @TeX{}, and @code{makeinfo}; this helps avoid
4411 unnecessary dependencies between our distributions, so that users can
4412 install whichever versions of whichever packages they like. Do not
4413 induce new dependencies on other software lightly.
4415 Non-source files that might actually be modified by building and
4416 installing the program should @strong{never} be included in the
4417 distribution. So if you do distribute non-source files, always make
4418 sure they are up to date when you make a new distribution.
4420 Make sure that all the files in the distribution are world-readable, and
4421 that directories are world-readable and world-searchable (octal mode 755).
4422 We used to recommend that all directories in the distribution also be
4423 world-writable (octal mode 777), because ancient versions of @code{tar}
4424 would otherwise not cope when extracting the archive as an unprivileged
4425 user. That can easily lead to security issues when creating the archive,
4426 however, so now we recommend against that.
4428 Don't include any symbolic links in the distribution itself. If the tar
4429 file contains symbolic links, then people cannot even unpack it on
4430 systems that don't support symbolic links. Also, don't use multiple
4431 names for one file in different directories, because certain file
4432 systems cannot handle this and that prevents unpacking the
4435 Try to make sure that all the file names will be unique on MS-DOS@. A
4436 name on MS-DOS consists of up to 8 characters, optionally followed by a
4437 period and up to three characters. MS-DOS will truncate extra
4438 characters both before and after the period. Thus,
4439 @file{foobarhacker.c} and @file{foobarhacker.o} are not ambiguous; they
4440 are truncated to @file{foobarha.c} and @file{foobarha.o}, which are
4443 @cindex @file{texinfo.tex}, in a distribution
4444 Include in your distribution a copy of the @file{texinfo.tex} you used
4445 to test print any @file{*.texinfo} or @file{*.texi} files.
4447 Likewise, if your program uses small GNU software packages like regex,
4448 getopt, obstack, or termcap, include them in the distribution file.
4449 Leaving them out would make the distribution file a little smaller at
4450 the expense of possible inconvenience to a user who doesn't know what
4454 @chapter References to Non-Free Software and Documentation
4455 @cindex references to non-free material
4457 A GNU program should not recommend, promote, or grant legitimacy to
4458 the use of any non-free program. Proprietary software is a social and
4459 ethical problem, and our aim is to put an end to that problem. We
4460 can't stop some people from writing proprietary programs, or stop
4461 other people from using them, but we can and should refuse to
4462 advertise them to new potential customers, or to give the public the
4463 impression that their existence is legitimate.
4465 The GNU definition of free software is found on the GNU web site at
4466 @url{https://www.gnu.org/@/philosophy/@/free-sw.html}, and the definition
4467 of free documentation is found at
4468 @url{https://www.gnu.org/@/philosophy/@/free-doc.html}. The terms ``free''
4469 and ``non-free'', used in this document, refer to those definitions.
4471 A list of important licenses and whether they qualify as free is in
4472 @url{https://www.gnu.org/@/licenses/@/license-list.html}. If it is not
4473 clear whether a license qualifies as free, please ask the GNU Project
4474 by writing to @email{licensing@@gnu.org}. We will answer, and if the
4475 license is an important one, we will add it to the list.
4477 When a non-free program or system is well known, you can mention it in
4478 passing---that is harmless, since users who might want to use it
4479 probably already know about it. For instance, it is fine to explain
4480 how to build your package on top of some widely used non-free
4481 operating system, or how to use it together with some widely used
4482 non-free program, after first explaining how to use it on the GNU
4485 However, you should give only the necessary information to help those
4486 who already use the non-free program to use your program with
4487 it---don't give, or refer to, any further information about the
4488 proprietary program, and don't imply that the proprietary program
4489 enhances your program, or that its existence is in any way a good
4490 thing. The goal should be that people already using the proprietary
4491 program will get the advice they need about how to use your free
4492 program with it, while people who don't already use the proprietary
4493 program will not see anything likely to lead them to take an interest
4496 You shouldn't recommend any non-free add-ons for the non-free program,
4497 but it is ok to mention free add-ons that help it to work with your
4498 program, and how to install the free add-ons even if that requires
4499 running some non-free program.
4501 If a non-free program or system is obscure in your program's domain,
4502 your program should not mention or support it at all, since doing so
4503 would tend to popularize the non-free program more than it popularizes
4504 your program. (You cannot hope to find many additional users for your
4505 program among the users of Foobar, if the existence of Foobar is not
4506 generally known among people who might want to use your program.)
4508 Sometimes a program is free software in itself but depends on a
4509 non-free platform in order to run. For instance, it used to be the
4510 case that many Java programs depended on some non-free Java libraries.
4511 (See @uref{https://www.gnu.org/philosophy/java-trap.html}.)
4512 To recommend or promote such a program is to promote the other
4513 programs it needs; therefore, judge mentions of the former as if they
4514 were mentions of the latter. For this reason, we were careful about
4515 listing Java programs in the Free Software Directory: we wanted to
4516 avoid promoting the non-free Java libraries.
4518 Java no longer has this problem, but the general principle will remain
4519 the same: don't recommend, promote or legitimize programs that depend
4520 on non-free software to run.
4522 Some free programs strongly encourage the use of non-free software. A
4523 typical example is @command{mplayer}. It is free software in itself,
4524 and the free code can handle some kinds of files. However,
4525 @command{mplayer} recommends use of non-free codecs for other kinds of
4526 files, and users that install @command{mplayer} are very likely to
4527 install those codecs along with it. To recommend @command{mplayer}
4528 is, in effect, to promote use of the non-free codecs.
4530 Thus, you should not recommend programs that strongly encourage the
4531 use of non-free software. This is why we do not list
4532 @command{mplayer} in the Free Software Directory.
4534 A GNU package should not refer the user to any non-free documentation
4535 for free software. Free documentation that can be included in free
4536 operating systems is essential for completing the GNU system, or any
4537 free operating system, so encouraging it is a priority; to recommend
4538 use of documentation that we are not allowed to include undermines the
4539 impetus for the community to produce documentation that we can
4540 include. So GNU packages should never recommend non-free
4543 By contrast, it is ok to refer to journal articles and textbooks in
4544 the comments of a program for explanation of how it functions, even
4545 though they are non-free. This is because we don't include such
4546 things in the GNU system even if they are free---they are outside the
4547 scope of what a software distribution needs to include.
4549 Referring to a web site that describes or recommends a non-free
4550 program is promoting that program, so please do not make links to (or
4551 mention by name) web sites that contain such material. This policy is
4552 relevant particularly for the web pages for a GNU package.
4554 What about chains of links? Following links from nearly any web site
4555 can lead eventually to promotion of non-free software; this is
4556 inherent in the nature of the web. Here's how we treat that.
4558 You should not refer to AT&T's web site if that recommends AT&T's
4559 non-free software packages; you should not refer to a page @var{p}
4560 that links to AT&T's site presenting it as a place to get some
4561 non-free program, because that part of the page @var{p} itself
4562 recommends and legitimizes the non-free program.
4564 However, if @var{p} contains a link to AT&T's web site for some other
4565 purpose (such as long-distance telephone service), that is no reason
4566 you should not link to @var{p}.
4568 A web page recommends a program in an implicit but particularly strong
4569 way if it requires users to run that program in order to use the page.
4570 Many pages contain JavaScript code which they recommend in this way.
4571 This JavaScript code may be free or non-free, but non-free is the usual
4574 If the purpose for which you would refer to the page cannot be carried
4575 out without running non-free JavaScript code, then you should not refer
4576 to it. Thus, if the purpose of referring to the page is for people to
4577 view a video, or subscribing to a mailing list, and the viewing or
4578 subscribing fail to work if the user's browser blocks the non-free
4579 JavaScript code, then don't refer to that page.
4581 The extreme case is that of web sites which depend on non-free
4582 JavaScript code even to @emph{see} the contents of the pages. Any
4583 site hosted on @indicateurl{wix.com} has this problem, and so do some
4584 other sites. Referring people to such pages to read their contents
4585 is, in effect, urging them to run those non-free programs---so please
4586 don't refer to those pages. (Such pages also break the Web, so they
4587 deserve condemnation for two reasons.)
4589 Instead, please quote excerpts from the page to make your point,
4590 or find another place to refer to that information.
4592 @node GNU Free Documentation License
4593 @appendix GNU Free Documentation License
4595 @cindex FDL, GNU Free Documentation License
4605 eval: (add-hook 'before-save-hook 'time-stamp)
4606 time-stamp-start: "@set lastupdate "
4608 time-stamp-format: "%:b %:d, %:y"
4609 compile-command: "cd work.s && make"