blob: 995bf9f4792214f7b82a189f47c3e383be34a9a9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
Load gdb script from commandline:
gdb --command script.py
Automatially load gdb_python-script:
.gdbinit
source /path/to/hello.py
source /path/to/foobar.py
etc, etc
THE solution:
gnome-terminal -- "gdb -x gdb_python.py" && gnome-terminal -- "qemu-system-x86_64"
|