source: coreutils/trunk/README

Last change on this file was 1953, checked in by Silvan Scherrer, 8 years ago

coreutils: update trunk to version 8.26

File size: 11.1 KB
Line 
1These are the GNU core utilities. This package is the union of
2the GNU fileutils, sh-utils, and textutils packages.
3
4Most of these programs have significant advantages over their Unix
5counterparts, such as greater speed, additional options, and fewer
6arbitrary limits.
7
8The programs that can be built with this package are:
9
10 [ arch b2sum base32 base64 basename cat chcon chgrp chmod chown chroot cksum
11 comm coreutils cp csplit cut date dd df dir dircolors dirname du echo env
12 expand expr factor false fmt fold groups head hostid hostname id install
13 join kill link ln logname ls md5sum mkdir mkfifo mknod mktemp mv nice nl
14 nohup nproc numfmt od paste pathchk pinky pr printenv printf ptx pwd
15 readlink realpath rm rmdir runcon seq sha1sum sha224sum sha256sum sha384sum
16 sha512sum shred shuf sleep sort split stat stdbuf stty sum sync tac tail
17 tee test timeout touch tr true truncate tsort tty uname unexpand uniq
18 unlink uptime users vdir wc who whoami yes
19
20See the file NEWS for a list of major changes in the current release.
21
22If you obtained this file as part of a "git clone", then see the
23README-hacking file. If this file came to you as part of a tar archive,
24then see the file INSTALL for compilation and installation instructions.
25
26These programs are intended to conform to POSIX (with BSD and other
27extensions), like the rest of the GNU system. By default they conform
28to older POSIX (1003.2-1992), and therefore support obsolete usages
29like "head -10" and "chown owner.group file". This default is
30overridden at build-time by the value of <unistd.h>'s _POSIX2_VERSION
31macro, and this in turn can be overridden at runtime as described in
32the documentation under "Standards conformance".
33
34The ls, dir, and vdir commands are all separate executables instead of
35one program that checks argv[0] because people often rename these
36programs to things like gls, gnuls, l, etc. Renaming a program
37file shouldn't affect how it operates, so that people can get the
38behavior they want with whatever name they want.
39
40Special thanks to Paul Eggert, Brian Matthews, Bruce Evans, Karl Berry,
41Kaveh Ghazi, and François Pinard for help with debugging and porting
42these programs. Many thanks to all of the people who have taken the
43time to submit problem reports and fixes. All contributed changes are
44attributed in the commit logs.
45
46And thanks to the following people who have provided accounts for
47portability testing on many different types of systems: Bob Proulx,
48Christian Robert, François Pinard, Greg McGary, Harlan Stenn,
49Joel N. Weber, Mark D. Roth, Matt Schalit, Nelson H. F. Beebe,
50Réjean Payette, Sam Tardieu.
51
52Thanks to Michael Stone for inflicting test releases of this package
53on Debian's unstable distribution, and to all the kind folks who used
54that distribution and found and reported bugs.
55
56Note that each man page is now automatically generated from a template
57and from the corresponding --help usage message. Patches to the template
58files (man/*.x) are welcome. However, the authoritative documentation
59is in texinfo form in the doc directory.
60
61
62*********************************************
63On Mac OS X 10.5.1 (Darwin 9.1), test failure
64---------------------------------------------
65
66Mac OS X 10.5.1 (Darwin 9.1) provides only partial (and incompatible)
67ACL support, so although "./configure && make" succeeds, "make check"
68exposes numerous failures. The solution is to turn off ACL support
69manually via "./configure --disable-acl". For details, see
70<http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/12292/focus=12318>.
71
72
73*****************************************
74Test failure with NLS and gettext <= 0.17
75-----------------------------------------
76
77Due to a conflict between libintl.h and gnulib's new xprintf module,
78when you configure with NLS support, and with a gettext installation
79older than 0.17.1 (not yet released, at the time of this writing),
80then some tests fail, at least on NetBSD 1.6. To work around it in
81the mean time, you can configure with --disable-nls. For details,
82see <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/12015/>.
83
84
85*********************
86Pre-C99 build failure
87---------------------
88
89In 2009 we added this requirement:
90To build the coreutils from source, you must have a C99-conforming
91compiler, due to the use of declarations after non-declaration statements
92in several files in src/. There is code in configure to find and, if
93possible, enable an appropriate compiler. However, if configure doesn't
94find a C99 compiler, it continues nonetheless, and your build will fail.
95There used to be a "c99-to-c89.diff" patch you could apply to convert
96to code that even an old pre-c99 compiler can handle, but it was too
97tedious to maintain, so has been removed.
98
99
100***********************
101HPUX 11.x build failure
102-----------------------
103
104A known problem exists when compiling on HPUX on both hppa and ia64
105in 64-bit mode (i.e., +DD64) on HP-UX 11.0, 11.11, and 11.23. This
106is not due to a bug in the package but instead due to a bug in the
107system header file which breaks things in 64-bit mode. The default
108compilation mode is 32-bit and the software compiles fine using the
109default mode. To build this software in 64-bit mode you will need
110to fix the system /usr/include/inttypes.h header file. After
111correcting that file the software also compiles fine in 64-bit mode.
112Here is one possible patch to correct the problem:
113
114--- /usr/include/inttypes.h.orig Thu May 30 01:00:00 1996
115+++ /usr/include/inttypes.h Sun Mar 23 00:20:36 2003
116@@ -489 +489 @@
117-#ifndef __STDC_32_MODE__
118+#ifndef __LP64__
119
120
121************************
122OSF/1 4.0d build failure
123------------------------
124
125If you use /usr/bin/make on an OSF/1 4.0d system, it will fail due
126to the presence of the "[" target. That version of make appears to
127treat "[" as some syntax relating to locks. To work around that,
128the best solution is to use GNU make. Otherwise, simply remove
129all mention of "[$(EXEEXT)" from src/Makefile.
130
131
132*************************************************
133"make check" failure on IRIX 6.5 and Solaris <= 9
134-------------------------------------------------
135
136Using the vendor make program to run "make check" fails on these two systems.
137If you want to run all of the tests there, use GNU make.
138
139
140
141**********************
142Running tests as root:
143----------------------
144
145If you run the tests as root, note that a few of them create files
146and/or run programs as a non-root user, 'nobody' by default.
147If you want to use some other non-root username, specify it via
148the NON_ROOT_USERNAME environment variable. Depending on the
149permissions with which the working directories have been created,
150using 'nobody' may fail, because that user won't have the required
151read and write access to the build and test directories.
152I find that it is best to unpack and build as a non-privileged
153user, and then to run the following command as that user in order
154to run the privilege-requiring tests:
155
156 sudo env PATH="$PATH" NON_ROOT_USERNAME=$USER make -k check-root
157
158If you can run the tests as root, please do so and report any
159problems. We get much less test coverage in that mode, and it's
160arguably more important that these tools work well when run by
161root than when run by less privileged users.
162
163
164***************
165Reporting bugs:
166---------------
167
168Send bug reports, questions, comments, etc. to bug-coreutils@gnu.org.
169To suggest a patch, see the files README-hacking and HACKING for tips.
170
171If you have a problem with 'sort', try running 'sort --debug', as it
172can can often help find and fix problems without having to wait for an
173answer to a bug report. If the debug output does not suffice to fix
174the problem on your own, please compress and attach it to the rest of
175your bug report.
176
177IMPORTANT: if you take the time to report a test failure,
178please be sure to include the output of running 'make check'
179in verbose mode for each failing test. For example,
180if the test that fails is tests/df/df-P.sh, then you would
181run this command:
182
183 make check TESTS=tests/df/df-P.sh VERBOSE=yes SUBDIRS=. >> log 2>&1
184
185For some tests, you can get even more detail by adding DEBUG=yes.
186Then include the contents of the file 'log' in your bug report.
187
188
189***************************************
190
191There are many tests, but nowhere near as many as we need.
192Additions and corrections are very welcome.
193
194If you see a problem that you've already reported, feel free to re-report
195it -- it won't bother me to get a reminder. Besides, the more messages I
196get regarding a particular problem the sooner it'll be fixed -- usually.
197If you sent a complete patch and, after a couple weeks you haven't
198received any acknowledgement, please ping us. A complete patch includes
199a well-written ChangeLog entry, unified (diff -u format) diffs relative
200to the most recent test release (or, better, relative to the latest
201sources in the public repository), an explanation for why the patch is
202necessary or useful, and if at all possible, enough information to
203reproduce whatever problem prompted it. Plus, you'll earn lots of
204karma if you include a test case to exercise any bug(s) you fix.
205Here are instructions for checking out the latest development sources:
206
207 http://savannah.gnu.org/git/?group=coreutils
208
209If your patch adds a new feature, please try to get some sort of consensus
210that it is a worthwhile change. One way to do that is to send mail to
211coreutils@gnu.org including as much description and justification
212as you can. Based on the feedback that generates, you may be able to
213convince us that it's worth adding. Please also consult the list of
214previously discussed but ultimately rejected feature requests at:
215http://www.gnu.org/software/coreutils/rejected_requests.html
216
217
218WARNING: Now that we use the ./bootstrap script, you should not run
219autoreconf manually. Doing that will overwrite essential source files
220with older versions, which may make the package unbuildable or introduce
221subtle bugs.
222
223
224WARNING: If you modify files like configure.in, m4/*.m4, aclocal.m4,
225or any Makefile.am, then don't be surprised if what gets regenerated no
226longer works. To make things work, you'll have to be using appropriate
227versions of the tools listed in bootstrap.conf's buildreq string.
228
229All of these programs except 'test' recognize the '--version' option.
230When reporting bugs, please include in the subject line both the package
231name/version and the name of the program for which you found a problem.
232
233For general documentation on the coding and usage standards
234this distribution follows, see the GNU Coding Standards,
235http://www.gnu.org/prep/standards_toc.html.
236
237For any copyright year range specified as YYYY-ZZZZ in this package
238note that the range specifies every single year in that closed interval.
239
240Mail suggestions and bug reports for these programs to
241the address on the last line of --help output.
242
243
244========================================================================
245
246Copyright (C) 1998-2016 Free Software Foundation, Inc.
247
248Permission is granted to copy, distribute and/or modify this document
249under the terms of the GNU Free Documentation License, Version 1.3 or
250any later version published by the Free Software Foundation; with no
251Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
252Texts. A copy of the license is included in the "GNU Free
253Documentation License" file as part of this distribution.
Note: See TracBrowser for help on using the repository browser.