fix clang build; adjust raddbg --convert option to --bin

This commit is contained in:
Ryan Fleury
2025-06-10 14:39:09 -07:00
parent f604ced174
commit 0e414a3dfb
7 changed files with 12 additions and 113 deletions
+1 -1
View File
@@ -53,7 +53,7 @@ entry_point(CmdLine *cmdline)
String8 dll_name = str8_skip_last_slash(dll_path_no_ext);
String8 pdb_path = push_str8f(arena, "%S.pdb", dll_path_no_ext);
String8 rdi_path = push_str8f(arena, "dump/%S.rdi", dll_name);
OS_Handle handle = os_cmd_line_launchf("raddbg --convert --pdb:%S --out:%S", pdb_path, rdi_path);
OS_Handle handle = os_cmd_line_launchf("raddbg --bin %S --out:%S", pdb_path, rdi_path);
os_handle_list_push(arena, &processes, handle);
if(processes_first_path_n == 0)
{