0

doc: Fix link to gdbinit.md & lldbinit.md on linux/debugging.md

- Fix the broken link to gdbinit.md & lldbinit.md on linux/debugging.md.
- Additionally, replace the absolute link to gdbinit.md with a relative
  link to maintain notation consistency with the other links in this
  doc.

Bug: n/a
Change-Id: Idc275f63de05264b66d0fbe022f26dc0e0b63599
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/4573957
Auto-Submit: Taiyo Mizuhashi <taiyo@chromium.org>
Commit-Queue: Hiroki Nakagawa <nhiroki@chromium.org>
Reviewed-by: Hiroki Nakagawa <nhiroki@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1150998}
This commit is contained in:
Taiyo Mizuhashi
2023-05-31 00:55:23 +00:00
committed by Chromium LUCI CQ
parent 0ff12783fe
commit d0f90c9d31

@ -40,8 +40,8 @@ symbol_level = 2
#### GDB setup
The Chrome build requires some GDB configuration for it to be able to find
source files. See [gdbinit](gdbinit.md) to configure GDB. There is a similar
process for [LLDB](lldbinit.md).
source files. See [gdbinit](../gdbinit.md) to configure GDB. There is a similar
process for [LLDB](../lldbinit.md).
### Basic browser process debugging
@ -282,7 +282,7 @@ three) but you'll still need to use `--plugin-launcher` or another approach.
### Printing Chromium types
gdb 7 lets us use Python to write pretty-printers for Chromium types. See
[gdbinit](https://chromium.googlesource.com/chromium/src/+/main/docs/gdbinit.md)
[gdbinit](../gdbinit.md)
to enable pretty-printing of Chromium types. This will import Blink
pretty-printers as well.