This is an automated email from the ASF dual-hosted git repository.
twice pushed a commit to branch unstable
in repository https://gitbox.apache.org/repos/asf/kvrocks.git
The following commit(s) were added to refs/heads/unstable by this push:
new 406ed6e3 docs: optimize the building section in README (#2447)
406ed6e3 is described below
commit 406ed6e3bd7d5a1a7ff6b764bf917f70eea6c5dd
Author: xiaobiaozhao <[email protected]>
AuthorDate: Fri Jul 26 14:22:40 2024 +0800
docs: optimize the building section in README (#2447)
---
README.md | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/README.md b/README.md
index a0768285..f3cf636c 100644
--- a/README.md
+++ b/README.md
@@ -97,11 +97,11 @@ To build with lua instead of luaJIT, run:
$ ./x.py build -DENABLE_LUAJIT=OFF
```
-Build with the development mode, run:
+Build with debug mode, run:
```shell
-# The default build type is RelWithDebInfo and its optimization level is O2.
-# You can change it to Debug in development mode.
+# The default build type is RelWithDebInfo and its optimization level is
typically -O2.
+# You can change it to -O0 in debug mode.
$ ./x.py build -DCMAKE_BUILD_TYPE=Debug
```