{ // 使用 IntelliSense 了解相关属性。 // 悬停以查看现有属性的描述。 // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "name": "(gdb) 启动GateServer", "type": "cppdbg", "request": "launch", "program": "${workspaceFolder}/build/Gateway/gateway_d", "args": ["${workspaceFolder}/build/Gateway/GateWay.txt"], "stopAtEntry": false, "cwd": "${workspaceFolder}", "environment": [ { "name":"LD_PRELOAD", "value":"/usr/local/lib/faketime/libfaketime.so.1" }, { "name":"FAKETIME_TIMESTAMP_FILE", "value":"${workspaceFolder}/../Server.time" }, { "name":"FAKETIME_CACHE_DURATION", "value":"5" }, ], "externalConsole": false, "MIMode": "gdb", "setupCommands": [ { "description": "为 gdb 启用整齐打印", "text": "-enable-pretty-printing", "ignoreFailures": true } ], "showDisplayString": true, "additionalSOLibSearchPath": "${workspaceFolder}/common/libs;${workspaceFolder}/srvlib/libs;${workspaceFolder}/../common/cpp/libs/3rd/bin;" }, { "name": "(gdb) 附加GateServer", "type": "cppdbg", "request": "attach", "program": "${workspaceFolder}/../build/GateServer/gateserver_d", "processId": "${command:pickProcess}", "MIMode": "gdb", "setupCommands": [ { "description": "为 gdb 启用整齐打印", "text": "-enable-pretty-printing", "ignoreFailures": true } ], "showDisplayString": true, "additionalSOLibSearchPath": "${workspaceFolder}/common/libs;${workspaceFolder}/srvlib/libs;${workspaceFolder}/../../common/cpp/libs/3rd/bin;" } ] }