|
- {
- "version": "0.2.0",
- "configurations": [
- {
- "name": "(gdb) Launch",
- "type": "cppdbg",
- "request": "launch",
- "program": "${workspaceFolder}/a.out",
- "args": [],
- "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": "Debug SimulationCore2",
- "type": "cppdbg",
- "request": "launch",
- "program": "${workspaceRoot}/SimulationCore2",
- "args": ["aberama.iran.liara.ir","32815","4YKFnubfFFjfh4yTK7b0Rg9X","60f8144a-c1b7-4d1a-5d99-08db9e4e35f5","5","1000"],
- "stopAtEntry": false,
- "cwd": "${workspaceRoot}",
- "externalConsole": false,
- "MIMode": "gdb",
- "preLaunchTask": "make",
- },
- {
- "name": "Debug write_vars",
- "type": "cppdbg",
- "request": "launch",
- "program": "${workspaceRoot}/write_vars",
- "args": ["Config-debug.json"],
- "stopAtEntry": false,
- "cwd": "${workspaceRoot}",
- "externalConsole": false,
- "MIMode": "gdb",
- // "preLaunchTask": "make debug",
- }
-
- ]
- }
|