mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
Kernel: Enable three missing KUBSAN options :^)
With the kernel command line issue fixed, we can now enable these KUBSAN options without getting triple faults on startup: * alignment * null * pointer-overflow
This commit is contained in:
parent
bc029a6314
commit
06919d189b
Notes:
sideshowbarker
2024-07-18 22:57:59 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/06919d189b4
1 changed files with 3 additions and 4 deletions
|
@ -291,10 +291,9 @@ set(KERNEL_FSANITIZE_FLAGS
|
|||
"enum"
|
||||
"vptr"
|
||||
"builtin"
|
||||
# following flags will cause triple faults:
|
||||
# "alignment"
|
||||
# "null"
|
||||
# "pointer-overflow"
|
||||
"alignment"
|
||||
"null"
|
||||
"pointer-overflow"
|
||||
)
|
||||
|
||||
if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
|
||||
|
|
Loading…
Reference in a new issue