diff options
author | Marvin Borner | 2020-10-24 13:20:35 +0200 |
---|---|---|
committer | Marvin Borner | 2020-10-24 13:20:35 +0200 |
commit | f0fe7c5ff003c714e76a7522967a0519a191cdf7 (patch) | |
tree | 517679e7b5227896732081961c37d4331507ee36 /kernel | |
parent | e5dd74563baf5b766b7bf226a0a42a661a14f974 (diff) |
Forced ccache compilation
...and some fixes :)
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kernel/Makefile b/kernel/Makefile index 599412e..3fd5108 100644 --- a/kernel/Makefile +++ b/kernel/Makefile @@ -18,10 +18,10 @@ COBJS = main.o \ features/syscall.o \ features/net.o \ features/event.o -CC = ../cross/opt/bin/i686-elf-gcc -LD = ../cross/opt/bin/i686-elf-ld -OC = ../cross/opt/bin/i686-elf-objcopy -AS = nasm +CC = ccache ../cross/opt/bin/i686-elf-gcc +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 |