diff --git a/programs/zstd.1.md b/programs/zstd.1.md index 5188be6a5..d0473fa47 100644 --- a/programs/zstd.1.md +++ b/programs/zstd.1.md @@ -674,6 +674,10 @@ Note that the results are highly dependent on the content being compressed. minimum evaluation time, in seconds (default: 3s), benchmark mode only * `-B#`, `--block-size=#`: cut file(s) into independent chunks of size # (default: no chunking) +* `-S`: + output one benchmark result per input file (default: consolidated result) +* `-D dictionary` + benchmark using dictionary * `--priority=rt`: set process priority to real-time (Windows) diff --git a/programs/zstdcli.c b/programs/zstdcli.c index 9dd6b051a..d8e908d85 100644 --- a/programs/zstdcli.c +++ b/programs/zstdcli.c @@ -32,7 +32,6 @@ #include /* getenv */ #include /* strcmp, strlen */ #include /* fprintf(), stdin, stdout, stderr */ -#include /* errno */ #include /* assert */ #include "fileio.h" /* stdinmark, stdoutmark, ZSTD_EXTENSION */ @@ -311,6 +310,7 @@ static void usageAdvanced(const char* programName) DISPLAYOUT(" -i# Set the minimum evaluation to time # seconds. [Default: 3]\n"); DISPLAYOUT(" -B# Cut file into independent chunks of size #. [Default: No chunking]\n"); DISPLAYOUT(" -S Output one benchmark result per input file. [Default: Consolidated result]\n"); + DISPLAYOUT(" -D dictionary Benchmark using dictionary \n"); DISPLAYOUT(" --priority=rt Set process priority to real-time.\n"); #endif