From f700ba6668dbdb91a03b2c5aa387eb4cabae8fcd Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Fri, 21 Aug 2020 20:39:48 +0200 Subject: Some things here and some things there --- kernel/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'kernel/Makefile') diff --git a/kernel/Makefile b/kernel/Makefile index e781141..e119933 100644 --- a/kernel/Makefile +++ b/kernel/Makefile @@ -20,9 +20,9 @@ AS = nasm # Flags to make the binary smaller TODO: Remove after indirect pointer support! CSFLAGS = -mpreferred-stack-boundary=2 -fno-asynchronous-unwind-tables -Os -CFLAGS = $(CSFLAGS) -Wall -Wextra -nostdlib -nostdinc -ffreestanding -fno-builtin -mgeneral-regs-only -std=c99 -m32 -pedantic-errors -Wl,-ekernel_main -I../libc/inc/ -Iinc/ -Dkernel +CFLAGS = $(CSFLAGS) -Wall -Wextra -nostdlib -nostdinc -ffreestanding -fno-builtin -mno-red-zone -mgeneral-regs-only -std=c99 -m32 -pedantic-errors -Wl,-ekernel_main -I../libc/inc/ -Iinc/ -Dkernel -ASFLAGS = -f elf32 -O3 +ASFLAGS = -f elf32 all: compile bootloader -- cgit v1.2.3