diff options
author | Marvin Borner | 2020-10-24 23:30:42 +0200 |
---|---|---|
committer | Marvin Borner | 2020-10-24 23:30:42 +0200 |
commit | ffb2c74435ad0e313b7c33ae1f00f02824bb6fc0 (patch) | |
tree | 9200b51e77ea66fb439e15a9bd41287a00cfa654 /kernel/Makefile | |
parent | 37b2fde1efd1527ca1462ab10f56ae049ca3525b (diff) |
Started new GFX/GUI abstraction
Diffstat (limited to 'kernel/Makefile')
-rw-r--r-- | kernel/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/kernel/Makefile b/kernel/Makefile index fcee759..c449cd9 100644 --- a/kernel/Makefile +++ b/kernel/Makefile @@ -23,9 +23,7 @@ LD = ccache ../cross/opt/bin/i686-elf-ld OC = ccache ../cross/opt/bin/i686-elf-objcopy AS = ccache nasm -# 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 +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 $(CFLAGS_EXTRA) $(OPTIMIZATION) ASFLAGS = -f elf32 all: compile |