diff options
| author | Theofilos Augoustis <theofilos.augoustis@gmail.com> | 2025-06-17 16:56:01 +0200 |
|---|---|---|
| committer | Theofilos Augoustis <theofilos.augoustis@gmail.com> | 2025-06-17 16:56:01 +0200 |
| commit | 0400b4db25bcb635573095deb495189f77fc1af5 (patch) | |
| tree | c81e5f38f28a1c3a5f05dcd109cbd62fc4a4306c /tools/verify_qemu.py | |
| parent | 506c6bca558c3f198809dc7c05de876137cde6d8 (diff) | |
| download | focaccia-0400b4db25bcb635573095deb495189f77fc1af5.tar.gz focaccia-0400b4db25bcb635573095deb495189f77fc1af5.zip | |
Lookup gdb in PATH in verify qemu script
Diffstat (limited to '')
| -rwxr-xr-x | tools/verify_qemu.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/verify_qemu.py b/tools/verify_qemu.py index df9f83d..7402852 100755 --- a/tools/verify_qemu.py +++ b/tools/verify_qemu.py @@ -72,7 +72,7 @@ def try_remove(l: list, v): if __name__ == "__main__": prog = make_argparser() - prog.add_argument('--gdb', default='/bin/gdb', + prog.add_argument('--gdb', default='gdb', help='GDB binary to invoke.') args = prog.parse_args() |