aboutsummaryrefslogtreecommitdiff
path: root/kernel/Makefile
diff options
context:
space:
mode:
authorMarvin Borner2020-09-15 18:32:49 +0200
committerMarvin Borner2020-09-15 18:32:49 +0200
commitc04947731537a722b7efe94ea0d7e56cbf21bf57 (patch)
treea18fcc22fcdb36e22ff5ed4a1b11dc075e127784 /kernel/Makefile
parent185af2c969c5d90ebcf7948e3b9fd8695b78256f (diff)
Added window focus z-index
Diffstat (limited to 'kernel/Makefile')
-rw-r--r--kernel/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/kernel/Makefile b/kernel/Makefile
index 98c17a2..1487ae3 100644
--- a/kernel/Makefile
+++ b/kernel/Makefile
@@ -21,7 +21,8 @@ LD = ../cross/opt/bin/i686-elf-ld
OC = ../cross/opt/bin/i686-elf-objcopy
AS = nasm
-CFLAGS = -Wall -Wextra -nostdlib -nostdinc -ffreestanding -fno-builtin -fno-asynchronous-unwind-tables -mno-red-zone -mgeneral-regs-only -mpreferred-stack-boundary=2 -std=c99 -m32 -pedantic-errors -Wl,-ekernel_main -I../libc/inc/ -Iinc/ -Dkernel -Ofast
+# TODO: Fix -Ofast (probably some dumb memory overflow bug)
+CFLAGS = -Wall -Wextra -nostdlib -nostdinc -ffreestanding -fno-builtin -fno-asynchronous-unwind-tables -mno-red-zone -mgeneral-regs-only -mpreferred-stack-boundary=2 -std=c99 -m32 -pedantic-errors -Wl,-ekernel_main -I../libc/inc/ -Iinc/ -Dkernel -O0
ASFLAGS = -f elf32