
The logical breakpoints map was created as a side effect of createUnrecoveredPanicBreakpoint or createFatalThrowBreakpoint, however with an executable with incomplete debug info (that must be incomplete in just the right way) both will fail and the logical breakpoint map will never be created. It's unknown how such an executable could be created, one easy way is to debug a non-go executable. Fixes #3114
6 lines
64 B
C
6 lines
64 B
C
#include <stdio.h>
|
|
|
|
int main(void) {
|
|
printf("hello world!");
|
|
}
|