I'm trying to debug a program using the https://github.com/EpicGames/raddebugger
$ cat main.c
#include <stdio.h>
int main(void)
{
printf("Hello from zig cc!\n");
return 0;
}
$ zig cc -g3 main.c -o main.exe
I have no problem debugging using lldb and vscode, but I can't get it working with raddebugger (it won't stop at my breakpoints).
I know it's a long shot, but has anybody tried this before? Thanks !