From cbadb089f1a04b96e7686178c222b1cd5e2547ac Mon Sep 17 00:00:00 2001 From: Maverick Kaung Date: Tue, 15 Nov 2022 18:26:25 +0100 Subject: [PATCH] doc: Fix instruction for Fedora 27 or newer - Fixes rust-embedded/book#249 - In the **Rust Embedded Discovery** book, it is noted to use `gdb` instead of `arm-none-eabi-gdb` as pointed out in rust-embedded/discovery#364 that `gdb` on Fedora justworks(tm). This was fixed for _Discovery_ book via rust-embedded/discovery#376 - Likewise, as mentioned per my comment in rust-embedded/book#249, on Fedora 37, `gdb` justworks(tm) as well. --- src/intro/install/linux.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/intro/install/linux.md b/src/intro/install/linux.md index f8684d0a..1c0b0edf 100644 --- a/src/intro/install/linux.md +++ b/src/intro/install/linux.md @@ -39,16 +39,13 @@ sudo apt install gdb-arm-none-eabi openocd qemu-system-arm - Fedora 27 or newer -> **NOTE** `arm-none-eabi-gdb` is the GDB command you'll use to debug your ARM -> Cortex-M programs - ``` console -sudo dnf install arm-none-eabi-gdb openocd qemu-system-arm +sudo dnf install gdb openocd qemu-system-arm ``` - Arch Linux