diff --git a/exercises/05/.vscode/launch.json b/exercises/05/.vscode/launch.json index 4208ce8..39a1062 100644 --- a/exercises/05/.vscode/launch.json +++ b/exercises/05/.vscode/launch.json @@ -1,6 +1,30 @@ { "version": "0.2.0", "configurations": [ + { + "name": "(gdb) Launch task", + "type": "cppdbg", + "request": "launch", + "program": "${workspaceRoot}/tasks/10_green_bottles", + "args": [], + "stopAtEntry": false, + "cwd": "${fileDirname}", + "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 + } + ] + }, { // for Linux "name": "(gdb) Launch", diff --git a/exercises/05/ps5_oyvindps.tar.gz b/exercises/05/ps5_oyvindps.tar.gz new file mode 100644 index 0000000..1cabfd9 Binary files /dev/null and b/exercises/05/ps5_oyvindps.tar.gz differ