I want to break at a local label in NASM assembly code using GDB.
Issuing the following command yields the output:
(gdb) break *start.label1 + 217
Attempt to extract a component of a value that is not a structure.
Here my code goes something like this:
global _start
_start:
...
.label1:
...
How can I break at local .label1
?