diff options
author | Marvin Borner | 2020-10-24 18:37:40 +0200 |
---|---|---|
committer | Marvin Borner | 2020-10-24 18:37:40 +0200 |
commit | 37b2fde1efd1527ca1462ab10f56ae049ca3525b (patch) | |
tree | bbb8464674dbebb1f149d330ded27542b893d28c /kernel/Makefile | |
parent | b84441b58e68a07c5c6064374539f68e3520611e (diff) |
Fixed Ofast - unfinished debugging!
Don't ask how I came up with the flags..
Diffstat (limited to 'kernel/Makefile')
-rw-r--r-- | kernel/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel/Makefile b/kernel/Makefile index 3fd5108..fcee759 100644 --- a/kernel/Makefile +++ b/kernel/Makefile @@ -23,9 +23,9 @@ LD = ccache ../cross/opt/bin/i686-elf-ld OC = ccache ../cross/opt/bin/i686-elf-objcopy AS = ccache nasm -# TODO: Fix -Ofast crash -CFLAGS = -Wall -Wextra -Wno-address-of-packed-member -nostdlib -nostdinc -ffreestanding -fno-builtin -mno-red-zone -mgeneral-regs-only -std=c99 -m32 -pedantic-errors -Wl,-ekernel_main -I../libc/inc/ -Iinc/ -Dkernel -O0 - +# TODO: Remove fixflags? +FIXFLAGS = -fno-tree-bit-ccp -fno-tree-builtin-call-dce -fno-tree-ccp -fno-tree-ch -fno-tree-coalesce-vars -fno-tree-copy-prop -fno-tree-dce -fno-tree-dominator-opts -fno-tree-dse -fno-tree-fre -fno-tree-pta -fno-tree-sink -fno-tree-slsr -fno-tree-sra -fno-tree-ter +CFLAGS = -Wall -Wextra -Wno-address-of-packed-member -nostdlib -nostdinc -ffreestanding -fno-builtin -mno-red-zone -mgeneral-regs-only -std=c99 -m32 -pedantic-errors -Wl,-ekernel_main -I../libc/inc/ -Iinc/ -Dkernel $(FIXFLAGS) -Ofast ASFLAGS = -f elf32 all: compile |