From 48c800f7ef4641c1332cd5da6ca6220abaf733fd Mon Sep 17 00:00:00 2001 From: Vinayak Goyal Date: Sat, 22 Nov 2025 01:00:35 -0500 Subject: [PATCH] Clarify build options in debugging documentation Updated documentation to clarify that building without optimization can lead to faster builds. --- doc/manual/source/development/debugging.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/manual/source/development/debugging.md b/doc/manual/source/development/debugging.md index ccc6614b7..d2450495e 100644 --- a/doc/manual/source/development/debugging.md +++ b/doc/manual/source/development/debugging.md @@ -15,7 +15,7 @@ In the development shell, set the `mesonBuildType` environment variable to `debu Then, proceed to build Nix as described in [Building Nix](./building.md). This will build Nix with debug symbols, which are essential for effective debugging. -It is also possible to build without debugging for faster build: +It is also possible to build without optimization for faster build: ```console [nix-shell]$ NIX_HARDENING_ENABLE=$(printLines $NIX_HARDENING_ENABLE | grep -v fortify)