|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- {
- "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 (Liara)",
- "type": "cppdbg",
- "request": "launch",
- "program": "${workspaceRoot}/SimulationCore2",
- "args": ["aberama.iran.liara.ir", "32815", "4YKFnubfFFjfh4yTK7b0Rg9X", "de972886-410b-440e-f8cc-08dba274a00f", "4", "1000","10"],
- "stopAtEntry": false,
- "cwd": "${workspaceRoot}",
- "externalConsole": false,
- "MIMode": "gdb",
- "preLaunchTask": "make",
- },
- {
- "name": "Debug (Asiatech)",
- "type": "cppdbg",
- "request": "launch",
- "program": "${workspaceRoot}/SimulationCore2",
- "args": ["85.198.9.229", "6379", "'1qazxsw2$$'", "b6996849-fb69-4076-ca17-08dbea60e4cb", "4", "100","10"],
- "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",
- }
-
- ]
- }
|