diff options
| author | Felix Morgner <felix.morgner@ost.ch> | 2025-07-23 09:30:34 +0000 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@ost.ch> | 2025-07-23 09:30:34 +0000 |
| commit | 3a407e83b2dbd15936569ff90e4433078ea1cbaf (patch) | |
| tree | 01870f4a24e6348d94b8153edb8c1ce1d5b9e7cd | |
| parent | f82e0c289d6ab3e901dd80a3cf72aeeb0f85a8c5 (diff) | |
| download | teachos-3a407e83b2dbd15936569ff90e4433078ea1cbaf.tar.xz teachos-3a407e83b2dbd15936569ff90e4433078ea1cbaf.zip | |
ide: redirect qemu error output
| -rw-r--r-- | .gitignore | 6 | ||||
| -rw-r--r-- | .vscode/tasks.json | 6 |
2 files changed, 6 insertions, 6 deletions
@@ -3,7 +3,5 @@ /.conan/install /docs/_build /.cache - -# Conan Generated CMake presets -CMakeUserPresets.json -.gdb_history +/.gdb_history +/qemu-stderr-*.log diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 12ec2ea..f94098e 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -17,7 +17,8 @@ "-d", "int,cpu_reset", "-cdrom", - "${command:cmake.buildDirectory}/bin/${command:cmake.buildType}/kernel.iso" + "${command:cmake.buildDirectory}/bin/${command:cmake.buildType}/kernel.iso", + "2>${workspaceFolder}/qemu-stderr-${command:cmake.buildType}.log" ], "isBackground": true, "presentation": { @@ -52,7 +53,8 @@ "-display", "curses", "-cdrom", - "${command:cmake.buildDirectory}/bin/${command:cmake.buildType}/kernel.iso" + "${command:cmake.buildDirectory}/bin/${command:cmake.buildType}/kernel.iso", + "2>${workspaceFolder}/qemu-stderr-${command:cmake.buildType}.log" ], "isBackground": true, "presentation": { |
