]> Cypherpunks.ru repositories - goredo.git/blob - doc/features.texi
2c5141e4ef45bca74a1aa84cbc9b3625e9acf619
[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}
16     and BLAKE3 hash
17 @item files creation is @code{umask}-friendly (unlike @code{mkstemp()}
18     used in @command{redo-c})
19 @item parallel build with jobs limit, optionally in infinite mode
20 @item coloured messages (can be disabled)
21 @item verbose debug messages, including out-of-date determination, PIDs,
22   lock and jobserver acquirings/releases
23 @item displaying of each target's execution time
24 @item each target's @file{stderr} can be prefixed with the PID
25 @item optional statusline with currently running/waiting/done jobs
26 @item target's @file{stderr} can be stored on the disk with
27     @url{http://cr.yp.to/libtai/tai64.html, TAI64N} timestamp prefixes
28     for each line. To convert them to localtime you can use either
29     @command{tai64nlocal} utility from
30     @url{http://cr.yp.to/daemontools.html, daemontools}, or similar one:
31     @code{go get go.cypherpunks.ru/tai64n/cmd/tai64nlocal}
32
33 @end itemize