Skip to content

Commit

Permalink
feat(launch): configure launch.json to use LLDB in macOS and gdb in l…
Browse files Browse the repository at this point in the history
…inux/Windows (#41)
  • Loading branch information
spi3ex authored May 20, 2024
1 parent 7dedd36 commit f86f306
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions simulator.code-workspace
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,17 @@
"cwd": "${workspaceFolder}",
"preLaunchTask": "Build",
"stopAtEntry": false,
"linux": {
"MIMode": "gdb",
"miDebuggerPath": "/usr/bin/gdb"
},
"osx": {
"MIMode": "lldb"
},
"windows": {
"MIMode": "gdb",
"miDebuggerPath": "C:\\MinGw\\bin\\gdb.exe"
}
},
{
"name": "Debug LVGL demo with LLVM",
Expand All @@ -87,6 +98,7 @@
"cwd": "${workspaceFolder}",
"preLaunchTask": "Build",
"stopAtEntry": false,
"MIMode": "lldb"
},
],
},
Expand Down

0 comments on commit f86f306

Please sign in to comment.