#[SOLVED] `zig cc` and raddebugger

1 messages · Page 1 of 1 (latest)

mild root
#

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 !

GitHub

A native, user-mode, multi-process, graphical debugger. - EpicGames/raddebugger

solar belfry
#

It works for me and I didn't do anything special

#

add a target, place your breakpoint and run

kind creek
solar belfry
#

top right

mild root
#

Thanks

#

I'm sorry for my late reponse. Let me try it

#

You're are right. It works !
Maybe I was missing something on how to use this new software.

In any case, thank you