mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-02 20:37:48 +00:00
3a586d2f0b
The scripts/qemu-gdb.py file is not easily discoverable. Add a .gdbinit file so GDB either loads qemu-gdb.py automatically or prints a message informing the user how to enable them (some systems disable ./.gdbinit loading for security reasons). Symlink .gdbinit and the scripts directory in order to make out-of-tree builds work. The scripts directory is used to find the qemu-gdb.py file specified by a relative path in .gdbinit. Suggested-by: Eric Blake <eblake@redhat.com> Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com> Reviewed-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Tested-by: Eric Blake <eblake@redhat.com> Message-id: 20170517124042.1430-1-stefanha@redhat.com Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
8 lines
326 B
Text
8 lines
326 B
Text
# GDB may have ./.gdbinit loading disabled by default. In that case you can
|
|
# follow the instructions it prints. They boil down to adding the following to
|
|
# your home directory's ~/.gdbinit file:
|
|
#
|
|
# add-auto-load-safe-path /path/to/qemu/.gdbinit
|
|
|
|
# Load QEMU-specific sub-commands and settings
|
|
source scripts/qemu-gdb.py
|