diff options
author | Sebastian Falbesoner <sebastian.falbesoner@gmail.com> | 2019-10-08 22:14:01 +0200 |
---|---|---|
committer | Sebastian Falbesoner <sebastian.falbesoner@gmail.com> | 2019-10-08 22:14:04 +0200 |
commit | a54ab2104c82c41d17ca603999a9a03161eefc9e (patch) | |
tree | d5b2800f5cfb2d095764d75e629442eb0f004fef /doc | |
parent | 520d140e6e4456e0e0de58a181cca5b9c458bffb (diff) |
[doc] fix Makefile target in benchmarking.md
while the resulting binary is called `bench_bitcoin`, the Makefile target is
named `bitcoin_bench` (see `src/Makefile.bench.include`)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/benchmarking.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/benchmarking.md b/doc/benchmarking.md index 8e3d88ab7a..b1a06009b5 100644 --- a/doc/benchmarking.md +++ b/doc/benchmarking.md @@ -11,7 +11,7 @@ Running For benchmarks purposes you only need to compile `bitcoin_bench`. Beware of configuring without `--enable-debug` as this would impact benchmarking by unlatching log printers and lock analysis. - make -C src bench_bitcoin + make -C src bitcoin_bench After compiling bitcoin-core, the benchmarks can be run with: |