tlang-c/.vscode/launch.json

56 lines
1.9 KiB
JSON
Raw Normal View History

2023-04-24 18:41:46 +00: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": [
{
"name": "(gdb) Launch With Program",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/tlang/tlang",
2023-05-06 02:28:23 +00:00
"args": ["${workspaceFolder}/tlang/my_junk_scripts/https_tesses.tlang"],
2023-04-24 18:41:46 +00:00
"stopAtEntry": false,
"cwd": "${fileDirname}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
},
{
"description": "Set Disassembly Flavor to Intel",
"text": "-gdb-set disassembly-flavor intel",
"ignoreFailures": true
}
]
},
{
"name": "(gdb) Launch Shell",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/tlang/tlang",
"stopAtEntry": false,
"cwd": "${fileDirname}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
},
{
"description": "Set Disassembly Flavor to Intel",
"text": "-gdb-set disassembly-flavor intel",
"ignoreFailures": true
}
]
}
]
}