{ // 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) attach", "type": "cppdbg", "request": "attach", "program": "${workspaceFolder}/build/bin/world", "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 } ] }, { "name": "(gdb) shared_memory", "type": "cppdbg", "request": "launch", "program": "${workspaceFolder}/build/bin/shared_memory", "cwd": "${workspaceFolder}/build/bin", "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 } ] }, { "name": "(gdb) world", "type": "cppdbg", "request": "launch", "program": "${workspaceFolder}/build/bin/world", "cwd": "${workspaceFolder}/build/bin", "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 } ] }, { "name": "(gdb) zone", "type": "cppdbg", "request": "launch", "program": "${workspaceFolder}/build/bin/zone", "cwd": "${workspaceFolder}/build/bin", "args": [ "", ], "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 } ] }, { "name": "(gdb) zone neriakb", "type": "cppdbg", "request": "launch", "program": "${workspaceFolder}/build/bin/zone", "cwd": "${workspaceFolder}/build/bin", "args": [ "neriakb", ], "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 } ] }, { "name": "(gdb) login", "type": "cppdbg", "request": "launch", "program": "${workspaceFolder}/build/bin/loginserver", "cwd": "${workspaceFolder}/build/bin", "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 } ] }, { "name": "(gdb) ucs", "type": "cppdbg", "request": "launch", "program": "${workspaceFolder}/build/bin/ucs", "cwd": "${workspaceFolder}/build/bin", "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 } ] }, { "name": "(gdb) queryserv", "type": "cppdbg", "request": "launch", "program": "${workspaceFolder}/build/bin/queryserv", "cwd": "${workspaceFolder}/build/bin", "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 } ] } ] }