Disable stack protector from gcc

This commit is contained in:
Mathieu Maret 2019-05-10 09:19:42 +02:00
parent 872c03f09b
commit 93e69bb43a
1 changed files with 1 additions and 1 deletions

View File

@ -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 \