You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In order for GDB to debug your application, you need to locate the compiled
75
-
ELF format version of it (which includes needed debug symbols). Under Linux
76
-
these files are stored in ``/tmp/arduino_build_*`` and the following command
77
-
will help locate the right file for your app
75
+
ELF format version of it (which includes needed debug symbols).
76
+
77
+
Under Linux these files are stored in ``/tmp/arduino_build_*`` and the following command will help locate the right file for your app:
78
78
79
79
.. code:: cpp
80
80
81
81
find /tmp -name "*.elf" -print
82
82
83
+
Under Windows these files are stored in `%userprofile%\AppData\Local\Temp\arduino_build_*`` and the following command will help locate the right file for your app:
84
+
85
+
.. code:: cpp
86
+
87
+
dir %userprofile%\appdata\*.elf /s/b
88
+
83
89
Note the full path of ELF file that corresponds to your sketch name, it will
0 commit comments