Kernel: dprintln file name is now relative

This makes file names much shorter
This commit is contained in:
Bananymous 2023-04-28 14:43:19 +03:00
parent 88a2c60065
commit d1155c968e
1 changed files with 1 additions and 0 deletions

View File

@ -113,6 +113,7 @@ target_compile_definitions(kernel PUBLIC __arch=${BANAN_ARCH})
target_compile_options(kernel PUBLIC -O2 -g)
target_compile_options(kernel PUBLIC -Wno-literal-suffix)
target_compile_options(kernel PUBLIC -fno-rtti -fno-exceptions)
target_compile_options(kernel PUBLIC -fmacro-prefix-map=${CMAKE_CURRENT_SOURCE_DIR}=.)
target_compile_options(kernel PUBLIC -fstack-protector -ffreestanding -Wall -Wextra -Werror=return-type -Wstack-usage=1024 -fno-omit-frame-pointer -mno-sse -mno-sse2)
if(ENABLE_KERNEL_UBSAN)