Simulation Core
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 
 
 

54 rader
1.8 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 SimulationCore2",
  30. "type": "cppdbg",
  31. "request": "launch",
  32. "program": "${workspaceRoot}/SimulationCore2",
  33. "args": ["aberama.iran.liara.ir","32815","4YKFnubfFFjfh4yTK7b0Rg9X","60f8144a-c1b7-4d1a-5d99-08db9e4e35f5","5","1000"],
  34. "stopAtEntry": false,
  35. "cwd": "${workspaceRoot}",
  36. "externalConsole": false,
  37. "MIMode": "gdb",
  38. "preLaunchTask": "make",
  39. },
  40. {
  41. "name": "Debug write_vars",
  42. "type": "cppdbg",
  43. "request": "launch",
  44. "program": "${workspaceRoot}/write_vars",
  45. "args": ["Config-debug.json"],
  46. "stopAtEntry": false,
  47. "cwd": "${workspaceRoot}",
  48. "externalConsole": false,
  49. "MIMode": "gdb",
  50. // "preLaunchTask": "make debug",
  51. }
  52. ]
  53. }