Enable gdb on toolchain builder (#2789)

As discussed in #2775 (comment) , this pr enables gdb back on the toolchain build scripts. It also updates the README to use the current toolchain name for the gdb section.
This commit is contained in:
Valentin Thomazic 2025-02-25 07:09:27 +01:00 committed by GitHub
parent 2d411b2dc8
commit dfdc72cb5a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 1 additions and 5 deletions

View file

@ -408,7 +408,7 @@ Info : Listening on port 4444 for telnet connections
Then you will be able to either connect through `telnet` or with `gdb`:
```
riscv64-unknown-elf-gdb /path/to/elf
risc-none-elf-gdb /path/to/elf
(gdb) target remote localhost:3333
(gdb) load

View file

@ -60,11 +60,7 @@ BINUTILS_CONFIGURE_OPTS() {
--target=$1
--prefix=${INSTALL_DIR}
--disable-werror
--disable-gdb
--disable-nls
--disable-sim
--disable-libdecnumber
--disable-readline
)
echo "${OPTS[@]}"
}