blob: 6739aa3f66338b15378d6b359415ff91e6b07a0e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{
"version": "0.2.0",
"configurations": [
{
"name": "(gdb) QEMU",
"type": "gdb",
"request": "attach",
"remote": true,
"target": "localhost:1234",
"valuesFormatting": "prettyPrinters",
"gdbpath": "x86_64-pc-elf-gdb",
"cwd": "${workspaceFolder}",
"preLaunchTask": "QEMU (gdb)",
"executable": "${command:cmake.buildDirectory}/bin/${command:cmake.buildType}/kernel.sym",
"autorun": [
"-enable-pretty-printing",
"-break-insert _start"
]
}
]
}
|