So, I call: pebble gdb —emulator basalt
And I get a Python error stack where the last message says:
File “/usr/lib/python3.12/subprocess.py”, line 389, in call
with Popen(*popenargs, **kwargs) as p:
^^^^^^^^^^^^^^^^^^^^^^^^^^^
File “/usr/lib/python3.12/subprocess.py”, line 1026, in init
self._execute_child(args, executable, preexec_fn, close_fds,
File “/usr/lib/python3.12/subprocess.py”, line 1955, in _execute_child
raise child_exception_type(errno_num, err_msg, err_filename)
FileNotFoundError: [Errno 2] No such file or directory: ‘arm-none-eabi-gdb’
So, it seems I need to install that arm-none-eabi-gdb file, right?
I am on Ubuntu 24.04. How do I install that file? Is it there anything else I should install to use gdb with the emulator?
Thanks!