Set C standard to gnu11

This commit is contained in:
Xnoe 2021-10-13 12:01:57 +01:00
parent 4a44a8030d
commit f9d7581cec
Signed by: xnoe
GPG Key ID: 45AC398F44F0DAFE

View File

@ -1,4 +1,4 @@
CFLAGS = -m32 -mgeneral-regs-only -nostdlib -fno-builtin -fno-exceptions -fno-leading-underscore -fno-pie -fno-stack-protector -Wno-pointer-to-int-cast CFLAGS = -std=gnu11 -m32 -mgeneral-regs-only -nostdlib -fno-builtin -fno-exceptions -fno-leading-underscore -fno-pie -fno-stack-protector -Wno-pointer-to-int-cast
LDFLAGS = LDFLAGS =
DISK_IMG_FILES = build/kernel/kernel.bin DISK_IMG_FILES = build/kernel/kernel.bin