From 0e022d186abf1517d92e94f16347ebe3768eb5dd Mon Sep 17 00:00:00 2001 From: Mathieu Maret Date: Thu, 28 Jun 2018 01:23:19 +0200 Subject: [PATCH] fix compilation with gcc 8 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f2b003d..9bb8769 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ CC=gcc CFLAGS = -Wall -nostdlib -nostdinc -ffreestanding -DKERNEL_SOS \ - -m32 -fno-asynchronous-unwind-tables + -m32 -fno-asynchronous-unwind-tables -fno-stack-protector LDFLAGS = --warn-common -m elf_i386 OBJECTS = bootstrap/multiboot.o \ hwcore/idt.o hwcore/gdt.o \