]> Cypherpunks.ru repositories - goredo.git/blob - doc/features.texi
REDO_INODE_NO_TRUST
[goredo.git] / doc / features.texi
1 @node Features
2 @unnumbered Features
3
4 @itemize
5
6 @item explicit useful and convenient checks from @command{apenwarr/redo}:
7     @itemize
8     @item check that @file{$1} was not touched during .do execution
9     @item check that @file{stdout} and @file{$3} are not written simultaneously
10     @item check that generated target was not modified "externally" outside
11       the redo, preventing its overwriting, but continuing the build
12     @end itemize
13 @item targets, dependency information and their directories are explicitly
14   synced (can be disabled, should work faster)
15 @item file's change is detected by comparing its size, @code{ctime} (if
16     @env{REDO_INODE_NO_TRUST} environment variable is not set) and
17     BLAKE3 hash
18 @item files creation is @code{umask}-friendly (unlike @code{mkstemp()}
19     used in @command{redo-c})
20 @item parallel build with jobs limit, optionally in infinite mode
21 @item coloured messages (can be disabled)
22 @item verbose debug messages, including out-of-date determination, PIDs,
23   lock and jobserver acquirings/releases
24 @item displaying of each target's execution time
25 @item each target's @file{stderr} can be prefixed with the PID
26 @item optional statusline with currently running/waiting/done jobs
27 @item target's @file{stderr} can be stored on the disk with
28     @url{http://cr.yp.to/libtai/tai64.html, TAI64N} timestamp prefixes
29     for each line. To convert them to localtime you can use either
30     @command{tai64nlocal} utility from
31     @url{http://cr.yp.to/daemontools.html, daemontools}, or similar one:
32     @code{go get go.cypherpunks.ru/tai64n/cmd/tai64nlocal}
33
34 @end itemize