mirror of
https://github.com/msojocs/wx-compiler.git
synced 2025-07-19 00:00:04 +08:00
43 lines
1.4 KiB
JSON
43 lines
1.4 KiB
JSON
{
|
|
// Use IntelliSense to learn about possible attributes.
|
|
// Hover to view descriptions of existing attributes.
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
|
|
{
|
|
"name": "(gdb) Launch",
|
|
"type": "cppdbg",
|
|
"request": "launch",
|
|
"program": "${workspaceFolder}/build/wcc",
|
|
"args": [
|
|
"\"--config-path\"",
|
|
"\"/mnt/d/Work/WeChatProjects/issue/97/wcc-cmd2.txt\""
|
|
],
|
|
"stopAtEntry": false,
|
|
"cwd": "/mnt/d/Work/WeChatProjects/issue/97/ThorUI-applets-vip",
|
|
"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
|
|
}
|
|
],
|
|
"sourceFileMap":{
|
|
"${workspaceRoot}": {
|
|
"editorPath": "${workspaceRoot}",
|
|
"useForBreakpoints": true
|
|
}
|
|
}
|
|
}
|
|
|
|
]
|
|
} |