Simulation Core
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

66 rivejä
2.3 KiB

  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "name": "(gdb) Launch",
  6. "type": "cppdbg",
  7. "request": "launch",
  8. "program": "${workspaceFolder}/a.out",
  9. "args": [],
  10. "stopAtEntry": false,
  11. "cwd": "${fileDirname}",
  12. "environment": [],
  13. "externalConsole": false,
  14. "MIMode": "gdb",
  15. "setupCommands": [
  16. {
  17. "description": "Enable pretty-printing for gdb",
  18. "text": "-enable-pretty-printing",
  19. "ignoreFailures": true
  20. },
  21. {
  22. "description": "Set Disassembly Flavor to Intel",
  23. "text": "-gdb-set disassembly-flavor intel",
  24. "ignoreFailures": true
  25. }
  26. ]
  27. },
  28. {
  29. "name": "Debug (Liara)",
  30. "type": "cppdbg",
  31. "request": "launch",
  32. "program": "${workspaceRoot}/SimulationCore2",
  33. "args": ["aberama.iran.liara.ir", "32815", "4YKFnubfFFjfh4yTK7b0Rg9X", "de972886-410b-440e-f8cc-08dba274a00f", "4", "1000"],
  34. "stopAtEntry": false,
  35. "cwd": "${workspaceRoot}",
  36. "externalConsole": false,
  37. "MIMode": "gdb",
  38. "preLaunchTask": "make",
  39. },
  40. {
  41. "name": "Debug (Asiatech)",
  42. "type": "cppdbg",
  43. "request": "launch",
  44. "program": "${workspaceRoot}/SimulationCore2",
  45. "args": ["85.198.9.229", "6379", "'1qazxsw2$$'", "b6996849-fb69-4076-ca17-08dbea60e4cb", "4", "100"],
  46. "stopAtEntry": false,
  47. "cwd": "${workspaceRoot}",
  48. "externalConsole": false,
  49. "MIMode": "gdb",
  50. "preLaunchTask": "make",
  51. },
  52. {
  53. "name": "Debug write_vars",
  54. "type": "cppdbg",
  55. "request": "launch",
  56. "program": "${workspaceRoot}/write_vars",
  57. "args": ["Config-debug.json"],
  58. "stopAtEntry": false,
  59. "cwd": "${workspaceRoot}",
  60. "externalConsole": false,
  61. "MIMode": "gdb",
  62. // "preLaunchTask": "make debug",
  63. }
  64. ]
  65. }