blob: 842896911732d17b6c7302651a47cae40d510959 (
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"
|