dashboard does not show up

Author: qrockzCreated Feb 22, 2024Updated Feb 22, 2024
Labelsnot a bug
bash
wget -P ~ https://github.com/cyrus-and/gdb-dashboard/raw/master/.gdbinit
gdb -ex r --args python code/armstrong.py

armstrong.py:

[...]
while temp > 0:
       digit = temp % 10
       sum += digit ** order
       temp //= 10
       breakpoint()
[...]

Unfortunately the dashboard does not show up though breakpoint was set.