Skip to content

Commit

Permalink
Debug: Add working 32 on 32 LLDB VSCode config
Browse files Browse the repository at this point in the history
  • Loading branch information
mikebeaton committed Oct 28, 2023
1 parent 6027c63 commit deddc9f
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions Debug/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,28 @@ For example, this is a working `launch.json` file for both LLDB and GDB debuggin
"traceResponse": true
}
},
{
"name": "OC lldb (32/32)",
"type": "cppdbg",
"request": "launch",
"targetArchitecture": "x86",
"program": "${workspaceFolder}/Debug/GdbSyms/Bin/Ia32_XCODE5/GdbSyms.dll",
"cwd": "${workspaceFolder}/Debug",
"MIMode": "lldb",
"customLaunchSetupCommands": [
{"text": "gdb-remote localhost:8832"},
{"text": "target create GdbSyms/Bin/Ia32_XCODE5/GdbSyms.dll", "ignoreFailures": true},
{"text": "command script import Scripts/lldb_uefi.py"},
{"text": "command script add -c lldb_uefi.ReloadUefi reload-uefi"},
{"text": "reload-uefi"},
],
"launchCompleteCommand": "exec-continue",
"logging": {
"engineLogging": false,
"trace": true,
"traceResponse": true
}
},
{
"name": "OC gdb",
"type": "cppdbg",
Expand Down

0 comments on commit deddc9f

Please sign in to comment.