From bae36e7d9147f92143528a32232a5f4b1f638e5b Mon Sep 17 00:00:00 2001 From: Stefan Lankes Date: Sat, 6 Aug 2016 22:14:42 +0200 Subject: [PATCH] enable C99 support --- hermit/arch/x86/loader/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hermit/arch/x86/loader/Makefile b/hermit/arch/x86/loader/Makefile index a749dbd64..d8b041a68 100644 --- a/hermit/arch/x86/loader/Makefile +++ b/hermit/arch/x86/loader/Makefile @@ -3,7 +3,7 @@ QEMU = qemu-system-x86_64 -machine accel=kvm -cpu host OBJDUMP = objdump OBJCOPY = objcopy CC = gcc -CFLAGS = -O2 -Wall -m64 -ffreestanding -mno-red-zone -fstrength-reduce -fomit-frame-pointer -finline-functions -Iinclude +CFLAGS = -O2 -Wall -m64 -std=c99 -ffreestanding -mno-red-zone -fstrength-reduce -fomit-frame-pointer -finline-functions -Iinclude NASM = nasm NASMFLAGS = -felf64 -g LD = ld