From 93e69bb43acc1b289ee4f9b237485b4ff8cb5ade Mon Sep 17 00:00:00 2001 From: Mathieu Maret Date: Fri, 10 May 2019 09:19:42 +0200 Subject: [PATCH] Disable stack protector from gcc --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2a2090e..f77c744 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ CC=gcc LD=ld CFLAGS = -Wall -nostdinc -ffreestanding -DKERNEL_SOS -m32 \ - -fno-asynchronous-unwind-tables + -fno-asynchronous-unwind-tables -fno-stack-protector LDFLAGS = --warn-common -nostdlib -m elf_i386 OBJECTS = bootstrap/multiboot.o \ hwcore/idt.o hwcore/gdt.o \