aboutsummaryrefslogtreecommitdiff
path: root/libc/Makefile
diff options
context:
space:
mode:
authorMarvin Borner2020-10-24 13:20:35 +0200
committerMarvin Borner2020-10-24 13:20:35 +0200
commitf0fe7c5ff003c714e76a7522967a0519a191cdf7 (patch)
tree517679e7b5227896732081961c37d4331507ee36 /libc/Makefile
parente5dd74563baf5b766b7bf226a0a42a661a14f974 (diff)
Forced ccache compilation
...and some fixes :)
Diffstat (limited to 'libc/Makefile')
-rw-r--r--libc/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/libc/Makefile b/libc/Makefile
index f6cddbc..a290445 100644
--- a/libc/Makefile
+++ b/libc/Makefile
@@ -11,10 +11,10 @@ COBJS = str.o \
sys.o \
list.o \
random.o
-CC = ../cross/opt/bin/i686-elf-gcc
-LD = ../cross/opt/bin/i686-elf-ld
-AR = ../cross/opt/bin/i686-elf-ar
-AS = nasm
+CC = ccache ../cross/opt/bin/i686-elf-gcc
+LD = ccache ../cross/opt/bin/i686-elf-ld
+AR = ccache ../cross/opt/bin/i686-elf-ar
+AS = ccache nasm
CFLAGS = -Wall -Wextra -nostdlib -nostdinc -fno-builtin -mgeneral-regs-only -std=c99 -m32 -pedantic-errors -Iinc/ -Ofast