From b5c7306c1fe66727b8889f5aed0b0849c63aab77 Mon Sep 17 00:00:00 2001 From: ofecisrael <138308435+ofecisrael@users.noreply.github.com> Date: Tue, 29 Oct 2024 17:49:52 +0200 Subject: [PATCH] Fix user manual (#86) --- user_manual.md | 30 ++++++++++++++++-------------- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/user_manual.md b/user_manual.md index d8ef1524..00b8ffae 100644 --- a/user_manual.md +++ b/user_manual.md @@ -11,6 +11,7 @@ To build ethos, run: mkdir build cd build cmake .. +make ``` The `ethos` binary will be available in `build/src/`. @@ -20,9 +21,10 @@ The `ethos` binary will be available in `build/src/`. By default, the above will be a production build of `ethos`. To build a debug version of `ethos`, that is significantly slower but has assertions and trace messages enabled, run: ```shell -mkdir build -DCMAKE_BUILD_TYPE=Debug +mkdir build cd build -cmake .. +cmake -DCMAKE_BUILD_TYPE=Debug .. +make ``` The `ethos` binary will be available in `build/src/`. @@ -39,8 +41,8 @@ The set of available options `