about summary refs log tree commit diff
path: root/src/etc/rust-gdbgui
AgeCommit message (Collapse)AuthorLines
2023-08-22rust-gdbgui: remove excessive quotesEren K-3/+3
in commit 8dd0ec6, the `GDB_ARGS` variable was split across 3 lines. However, extra quotes were added to each line, such that the shell interprets the 3 lines as space separated strings, and tries to execute the latter two lines. This commit simply removes the extra quotes.
2023-04-14Fix rust-gdb and rust-gdbgui on FreeBSDAlan Somers-1/+1
"\w" is a GNU-specific extension to sed. Avoid it. Fixes #110334 Signed-off-by: Alan Somers <asomers@gmail.com>
2023-03-23Set up standard library path substitution in rust-gdb and gdbguiLaurențiu Nicola-1/+5
2022-07-12Fix gdb-cmd for rust-gdbguiSebastian Imlay-2/+1
2020-04-02Prefer sysroot from rustc in same directory as rust-gdbJeremy Fitzhardinge-1/+9
If there isn't a rustc in the same directory, then fall back to searching the path.
2018-12-25Remove licensesMark Rousskov-9/+0
2018-08-30Fix direction of slashes in the help text example.Philip Daniels-3/+3
2018-08-28Add rust-gdbgui script.Philip Daniels-0/+65
This script invokes the gdbgui graphical GDB front-end with the Rust pretty printers loaded. The script does not install gdbgui, that must be done manually.