|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- {
- "version": "0.2.0",
- "configurations": [
-
- {
- "name": "Debug (Afra)",
- "type": "cppdbg",
- "request": "launch",
- "program": "${workspaceRoot}/SimulationCore2",
- "args": ["78.109.201.86", "6379", "'1qazxsw2$$'", "37364875-c9cf-43a3-de45-08dc0c6103c9", "4", "100","1"],
- "stopAtEntry": false,
- "cwd": "${workspaceRoot}",
- "externalConsole": false,
- "MIMode": "gdb",
- "preLaunchTask": "make",
- },
- {
- "name": "(gdb) Launch",
- "type": "cppdbg",
- "request": "launch",
- "program": "${workspaceFolder}/a.out",
- "args": [],
- "stopAtEntry": false,
- "cwd": "${workspaceFolder}",
- #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
- },
- ],
- "preLaunchTask": "build"
- },
- {
- "name": "Debug Test",
- "type": "cppdbg",
- "request": "launch",
- "program": "${workspaceRoot}/Test_Redis",
- "args": [],
- "stopAtEntry": false,
- "cwd": "${workspaceRoot}",
- "externalConsole": false,
- "MIMode": "gdb",
- "preLaunchTask": "make testredis",
- }
-
- ]
- }
|