EpicGamesExt / raddebugger

A native, user-mode, multi-process, graphical debugger.
MIT License
3.55k stars 182 forks source link

PDBs(?) emitted from clang fail to show local variables #269

Closed Zorkimer closed 5 months ago

Zorkimer commented 5 months ago

Compiled

int main () {
   int testVariable = 8008;
}

with the commands

call clang -v ctest.c -o c.exe -g -gcodeview
call clang-cl -v ctest.c -o c_cl.exe -g -gcodeview

(I invoked vcvarsall.bat before the clang-cl call) and locals works normally in VS: 2024-06-17-1718640194 2024-06-17-1718640199 but in raddbg: 2024-06-17-1718639852 2024-06-17-1718639861 Both the cl and non-cl versions have this issue.

ryanfleury commented 5 months ago

Fixed in 0b3e3228d1feaa14ca8d4653859d6dc1d1a5c2e1.