diff options
author | Peter Kuemmel <syntheticpp@gmx.net> | 2012-06-29 14:12:03 (GMT) |
---|---|---|
committer | Peter Kümmel <syntheticpp@gmx.net> | 2012-07-15 20:22:27 (GMT) |
commit | c0c5ef9bffb0130e169aeddcb8487b670c6b56fe (patch) | |
tree | 229e624ce902d6f1cf4204c8a55a5abdee73daa6 /doc | |
parent | 638b0336e98af65240c1d0d66c5e0d9e5b800d9e (diff) | |
download | Ninja-c0c5ef9bffb0130e169aeddcb8487b670c6b56fe.zip Ninja-c0c5ef9bffb0130e169aeddcb8487b670c6b56fe.tar.gz Ninja-c0c5ef9bffb0130e169aeddcb8487b670c6b56fe.tar.bz2 |
print edges per second
prints the rate of finished edges per second to the console,
for instance with NINJA_STATUS="[%s/%t %o(%c)/s] ":
[132/1922 16.1(14)/s]
16.1 is the average for all processed files (here 132 since start)
14 is the average of the last n files while n is the number specifies by
-j (or its default)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/manual.asciidoc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/manual.asciidoc b/doc/manual.asciidoc index e7983be..94744be 100644 --- a/doc/manual.asciidoc +++ b/doc/manual.asciidoc @@ -218,6 +218,8 @@ Several placeholders are available: * `%r`: The number of currently running edges. * `%u`: The number of remaining edges to start. * `%f`: The number of finished edges. +* `%o`: Overall rate of finished edges per second +* `%c`: Current rate of finished edges per second (average over builds specified by -j or its default) * `%%`: A plain `%` character. * The default progress status is `"[%s/%t] "` (note the trailing space to separate from the build rule). Another example of possible progress status |