fix compilation with gcc 8

This commit is contained in:
Mathieu Maret 2018-06-28 01:32:11 +02:00
parent 7072f7efd0
commit 22e5c79c5c
2 changed files with 2 additions and 2 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
LIBGCC := $(shell $(CC) -print-libgcc-file-name -m32) # To benefit from FP/64bits artihm.
LDFLAGS = --warn-common -nostdlib -m elf_i386
OBJECTS = bootstrap/multiboot.o \

View File

@ -18,7 +18,7 @@
CC=gcc
AR=ar
OBJCOPY=objcopy
CFLAGS = -Wall -nostdinc -ffreestanding -I. -I.. -m32 -fno-asynchronous-unwind-tables
CFLAGS = -Wall -nostdinc -ffreestanding -I. -I.. -m32 -fno-asynchronous-unwind-tables -fno-stack-protector
LIBGCC := $(shell $(CC) -print-libgcc-file-name -m32) # To benefit from FP/64bits artihm.
LDFLAGS = -Wl,--warn-common -nostdlib -Wl,-Tldscript.lds -m32 -fno-asynchronous-unwind-tables