From 3b8aabce0fc73edafcf3d2947b193186226989f2 Mon Sep 17 00:00:00 2001 From: apio Date: Wed, 11 Dec 2024 19:28:22 +0100 Subject: [PATCH] kernel: Add debug.cmake include to config.cmake template --- kernel/config.cmake.template | 3 +++ 1 file changed, 3 insertions(+) diff --git a/kernel/config.cmake.template b/kernel/config.cmake.template index d7d98b77..74119190 100644 --- a/kernel/config.cmake.template +++ b/kernel/config.cmake.template @@ -19,3 +19,6 @@ # Uncomment the line below to make the kernel also calculate stack traces for userspace addresses on program crashes. # This can aid in debugging, but makes the kernel more unstable as stack tracing will access arbitrary userspace memory. # target_compile_definitions(moon PRIVATE MOON_ENABLE_USERSPACE_STACK_TRACES) + +# Uncomment the line below to enable all kernel debug messages, and console logging. +# include(debug.cmake)