summaryrefslogtreecommitdiff
path: root/.vscode/launch.json
diff options
context:
space:
mode:
authorFelix Morgner <felix.morgner@gmail.com>2025-05-09 10:48:47 +0200
committerFelix Morgner <felix.morgner@gmail.com>2025-05-09 10:48:47 +0200
commitcf6951bbfe99bf494f22c1b1d02fb6a8f45e73a9 (patch)
tree164eff4e337e1d3e7cd9de58d4c960763070d69a /.vscode/launch.json
parent71fe1d395a3c1d94dac68469826118e357f7086d (diff)
downloadturns-cf6951bbfe99bf494f22c1b1d02fb6a8f45e73a9.tar.xz
turns-cf6951bbfe99bf494f22c1b1d02fb6a8f45e73a9.zip
ide: switch to vscodium
Diffstat (limited to '.vscode/launch.json')
-rw-r--r--.vscode/launch.json36
1 files changed, 10 insertions, 26 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index 5099c92..29733b3 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -2,33 +2,17 @@
"version": "0.2.0",
"configurations": [
{
- "name": "(gdb) Launch",
- "type": "cppdbg",
+ "name": "Launch",
+ "type": "gdb",
"request": "launch",
- "program": "${command:cmake.launchTargetPath}",
- "stopAtEntry": false,
- "cwd": "${workspaceRoot}",
- "environment": [],
- "externalConsole": false,
- "MIMode": "gdb",
- "miDebuggerArgs": "-nx",
- "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
- },
- {
- "description": "Enable DebuginfoD",
- "text": "-gdb-set debuginfod enabled on",
- "ignoreFailures": true
- }
+ "target": "${command:cmake.launchTargetPath}",
+ "cwd": "${workspaceFolder}",
+ "debugger_args": ["-nx"],
+ "autorun": [
+ "-enable-pretty-printing",
+ "-gdb-set disassembly-flavor intel",
+ "-gdb-set debuginfod enabled on",
]
- },
+ }
]
} \ No newline at end of file