From 3f2736d9177de475f61a1f8ca38da39f9830fbd7 Mon Sep 17 00:00:00 2001 From: Stefan Lankes Date: Mon, 16 May 2016 13:10:50 +0200 Subject: [PATCH] add warning if the frame is larger than the kernel stack frame --- hermit/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hermit/Makefile b/hermit/Makefile index e7c23fcd1..871940248 100644 --- a/hermit/Makefile +++ b/hermit/Makefile @@ -35,7 +35,7 @@ NASM = nasm NASMFLAGS = -felf64 -g -i$(TOPDIR)/include/hermit/ INCLUDE = -I$(TOPDIR)/include -I$(TOPDIR)/arch/$(ARCH)/include -I$(TOPDIR)/lwip/src/include -I$(TOPDIR)/lwip/src/include/ipv4 -I$(TOPDIR)/drivers -CFLAGS = -DVERSION=\"$(GIT_VERSION)\" -g -m64 -Wall -O2 -mno-red-zone -fno-var-tracking-assignments -fstrength-reduce -fomit-frame-pointer -finline-functions -ffreestanding -nostdinc -fno-stack-protector -mno-sse -mno-mmx -mno-sse2 -mno-3dnow -mno-avx -fno-delete-null-pointer-checks -falign-jumps=1 -falign-loops=1 -mno-80387 -mno-fp-ret-in-387 -mskip-rax-setup -fno-common $(INCLUDE) +CFLAGS = -DVERSION=\"$(GIT_VERSION)\" -g -m64 -Wall -O2 -mno-red-zone -fno-var-tracking-assignments -fstrength-reduce -fomit-frame-pointer -finline-functions -ffreestanding -nostdinc -fno-stack-protector -mno-sse -mno-mmx -mno-sse2 -mno-3dnow -mno-avx -fno-delete-null-pointer-checks -falign-jumps=1 -falign-loops=1 -mno-80387 -mno-fp-ret-in-387 -mskip-rax-setup -fno-common -Wframe-larger-than=8192 $(INCLUDE) AR = ar ARFLAGS = rsv RM = rm -rf