From 3a407e83b2dbd15936569ff90e4433078ea1cbaf Mon Sep 17 00:00:00 2001 From: Felix Morgner Date: Wed, 23 Jul 2025 09:30:34 +0000 Subject: ide: redirect qemu error output --- .gitignore | 6 ++---- .vscode/tasks.json | 6 ++++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index d0c36aa..13fb722 100644 --- a/.gitignore +++ b/.gitignore @@ -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": { -- cgit v1.2.3