Ertser Commit

This commit is contained in:
2026-02-25 17:10:36 +01:00
commit c84df3426b
7 changed files with 320 additions and 0 deletions

49
.vscode/launch.json vendored Normal file
View 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
}
]
}
]
}