From f557c5936430de6b864e8b1f120a41b160d65f74 Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Sat, 14 Oct 2023 11:43:07 +0200 Subject: [PATCH] doc: recommend the rust-gdb helper --- DEVELOPMENT.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index 308daba98..9cb81a88c 100644 --- a/DEVELOPMENT.md +++ b/DEVELOPMENT.md @@ -157,7 +157,7 @@ cargo nextest run --features unix --no-fail-fast To debug: ```shell -gdb --args target/debug/coreutils ls +rust-gdb --args target/debug/coreutils ls (gdb) b ls.rs:79 (gdb) run ```