fix compilation with gcc 8

This commit is contained in:
Mathieu Maret 2018-06-28 01:23:19 +02:00
parent 6cbfe3ffce
commit 0e022d186a
1 changed files with 1 additions and 1 deletions

View File

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