This commit is contained in:
mintsuki 2023-02-28 12:33:46 +01:00
parent 6ada14a8c4
commit 8e30fda4de
2 changed files with 2 additions and 2 deletions

View file

@ -37,7 +37,7 @@ LDFLAGS ?=
# Internal C flags that should not be changed by the user. # Internal C flags that should not be changed by the user.
override CFLAGS += \ override CFLAGS += \
-std=c11 \ -std=gnu11 \
-ffreestanding \ -ffreestanding \
-fno-stack-protector \ -fno-stack-protector \
-fno-stack-check \ -fno-stack-check \

View file

@ -13,7 +13,7 @@ static volatile struct limine_terminal_request terminal_request = {
static void done(void) { static void done(void) {
for (;;) { for (;;) {
__asm__("hlt"); asm ("hlt");
} }
} }