From cc592241dcd53861836861b7f38823531cf868e7 Mon Sep 17 00:00:00 2001 From: Isaac Garzon Date: Thu, 10 Nov 2022 11:30:54 +0200 Subject: [PATCH] docs: fix instructions for building Speedb in README.md and INSTALL.md Both were incorrectly referencing the old artefact names before the changes in #66. --- INSTALL.md | 4 ++-- README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index 77ed9cddd3..e8cdaafc07 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -11,9 +11,9 @@ depend on newer gcc/clang with C++17 support (GCC >= 7, Clang >= 5). There are few options when compiling Speedb: - [recommended] `make static_lib` will compile the Speedb static library - (`librocksdb.a`) in release mode. + (`libspeedb.a`) in release mode. -- `make shared_lib` will compile the Speedb shared library (`librocksdb.so`) +- `make shared_lib` will compile the Speedb shared library (`libspeedb.so`) in release mode. - `make check` will compile and run all the unit tests. `make check` will diff --git a/README.md b/README.md index e4387416ac..78a1539b59 100644 --- a/README.md +++ b/README.md @@ -72,7 +72,7 @@ Release: This will build the static library. If you want to build the dynamic library, use: - make rocksdb-shared + make speedb-shared If you want `make` to increase the number of cores used for building, simply use the `-j` option.