FreeRTOS-Kernel/FreeRTOS/Demo/Posix_GCC/.vscode/launch.json
joejoseph08 3b34f8028d
Add cygwin option for compilation (#1230)
Add Cygwin option for compilation
2024-08-23 15:36:40 +05:30

60 lines
1.9 KiB
JSON

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Launch lldb",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build/posix_demo",
"args": [],
"stopAtEntry": true,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "lldb",
"preLaunchTask": "${defaultBuildTask}"
},
{
"name": "Launch GDB Ubuntu WSL",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build/posix_demo",
"args": [],
"stopAtEntry": true,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"preLaunchTask": "${defaultBuildTask}"
},
{
"name": "Launch GDB Cygwin",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build/posix_demo",
"args": [],
"stopAtEntry": true,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": true,
"MIMode": "gdb",
"preLaunchTask": "${defaultBuildTask}"
},
{
"name": "Launch GDB MSYS2",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build/posix_demo",
"args": [],
"stopAtEntry": true,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": true,
"MIMode": "gdb",
"preLaunchTask": "${defaultBuildTask}"
}
]
}