Ertser Commit
This commit is contained in:
49
.vscode/launch.json
vendored
Normal file
49
.vscode/launch.json
vendored
Normal file
@@ -0,0 +1,49 @@
|
||||
{
|
||||
// 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) Starten",
|
||||
"type": "cppdbg",
|
||||
"request": "launch",
|
||||
"program": "/cygdrive/c/Users/rexfu/Projekte/WebServer/webserver.exe",
|
||||
"args": [],
|
||||
"stopAtEntry": false,
|
||||
"cwd": "/cygdrive/c/Users/rexfu/Projekte/WebServer",
|
||||
"environment": [],
|
||||
"externalConsole": false,
|
||||
"MIMode": "gdb",
|
||||
"miDebuggerPath": "/usr/bin/gdb",
|
||||
"pipeTransport": {
|
||||
"pipeProgram": "C:/cygwin64/bin/bash.exe",
|
||||
"pipeArgs": [
|
||||
"-lc"
|
||||
],
|
||||
"debuggerPath": "/usr/bin/gdb"
|
||||
},
|
||||
"sourceFileMap": {
|
||||
"/cygdrive/c/Users/rexfu/Projekte/WebServer": "${workspaceFolder}"
|
||||
},
|
||||
"logging": {
|
||||
"engineLogging": false,
|
||||
"trace": false,
|
||||
"traceResponse": false
|
||||
},
|
||||
"preLaunchTask": "C++ Build",
|
||||
"setupCommands": [
|
||||
{
|
||||
"description": "Automatische Strukturierung und Einrückung für gdb aktivieren",
|
||||
"text": "-enable-pretty-printing",
|
||||
"ignoreFailures": true
|
||||
},
|
||||
{
|
||||
"description": "Disassemblierungsvariante auf Intel festlegen",
|
||||
"text": "-gdb-set disassembly-flavor intel",
|
||||
"ignoreFailures": true
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user