From 7fc6deadfbc8ad6074d8b1f977483f5ed92f4152 Mon Sep 17 00:00:00 2001 From: Olivier Chafik Date: Mon, 29 Apr 2024 16:57:03 +0100 Subject: [PATCH] build: reword debug instructions around single/multi config split --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f5a863567..82d722f36 100644 --- a/README.md +++ b/README.md @@ -329,14 +329,14 @@ In order to build llama.cpp you have three different options. **Note**: for `Debug` builds, there are two cases: - - General case (esp. for default Makefile or Ninja generation): + - Single-config generators (e.g. default = `Unix Makefiles`; note that they just ignore the `--config` flag): ```bash cmake -B build -DCMAKE_BUILD_TYPE=Debug cmake --build build ``` - - Special case for multi-config generators (`-G` param set to Visual Studio, XCode...; note that `--config` is ignored by other generators): + - Multi-config generators (`-G` param set to Visual Studio, XCode...): ```bash cmake -B build -G "Xcode"