-
Notifications
You must be signed in to change notification settings - Fork 810
Open
Labels
Description
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.