1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-29 17:45:11 +00:00

Kernel: Build the kernel as a position-independent executable

This is a prerequisite for KASLR, which we should eventually be doing.
This commit is contained in:
Andreas Kling 2020-01-06 13:04:11 +01:00
parent 53bda09d15
commit 0614c3dd3c
2 changed files with 6 additions and 1 deletions

View file

@ -220,4 +220,9 @@ u32 __stack_chk_guard = (u32)0xc0000c13;
{
ASSERT_NOT_REACHED();
}
[[noreturn]] void __stack_chk_fail_local()
{
ASSERT_NOT_REACHED();
}
}