ClassicOS/.vscode/launch.json

43 lines
1.1 KiB
JSON
Raw Normal View History

2023-07-10 03:05:34 -07:00
{
// 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": [
2024-03-24 19:38:29 -07:00
2023-07-10 03:05:34 -07:00
{
"name": "gcc-8 - Build and debug active file Level 1",
"type": "cppdbg",
"request": "launch",
"program": "/home/gbowne1/Documents/ClassicOS/build/ClassicOS",
2023-07-10 03:05:34 -07:00
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
],
"preLaunchTask": "Debug Build Level 1",
"miDebuggerPath": "/usr/bin/gdb",
"logging": {
"engineLogging": true
}
2024-03-24 19:38:29 -07:00
},
{
"name": "Debug with QEMU",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/boot.bin",
"miDebuggerPath": "/usr/bin/qemu-system-i386",
"miDebuggerArgs": "-kernel",
"cwd": "${workspaceFolder}",
"preLaunchTask": "build"
2023-07-10 03:05:34 -07:00
}
]
}