Compare commits
No commits in common. "cd7a4912af143bec975031bff663199b45a35436" and "15a9ebd9a6acc168c54ad7ec63aa94c76bd06a26" have entirely different histories.
cd7a4912af
...
15a9ebd9a6
|
|
@ -5,12 +5,28 @@
|
||||||
"version": "0.2.0",
|
"version": "0.2.0",
|
||||||
"configurations": [
|
"configurations": [
|
||||||
{
|
{
|
||||||
"name": "Debug",
|
"name": "(gdb) Launch",
|
||||||
"type": "gdb",
|
"type": "cppdbg",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
"target": "${workspaceFolder}/build/2D_Engine",
|
"program": "${workspaceFolder}/build/2D_Engine",
|
||||||
"cwd": "${workspaceRoot}",
|
"args": [],
|
||||||
"valuesFormatting": "parseText"
|
"stopAtEntry": false,
|
||||||
|
"cwd": "${workspaceFolder}",
|
||||||
|
"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
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
@ -1 +1 @@
|
||||||
Subproject commit 9b6ac3c1455aa0ac3036cef40db80974aa27410e
|
Subproject commit af6ae7ae2225bbc73d4128cf19b6c099dcdfc03a
|
||||||
Loading…
Reference in New Issue