--debug-vm-ex for the win

This commit is contained in:
Ciro Santilli 六四事件 法轮功
2020-06-25 05:00:04 +00:00
parent c9d15228ab
commit 9f0f6dc054
2 changed files with 20 additions and 2 deletions

View File

@@ -10149,12 +10149,20 @@ This is of course trivial since they are just regular userland programs on the h
./run --debug-vm
....
Or for a faster development loop:
Or for a faster development loop you can pass `-ex` command as a semicolon separated list:
....
./run --debug-vm-ex 'break qemu_add_opts;run'
....
which is equivalent to the more verbose:
....
./run --debug-vm-args '-ex "break qemu_add_opts" -ex "run"'
....
if you ever want need anything besides -ex.
Or if things get really involved and you want a debug script:
....