diff options
| author | Moyster <oysterized@gmail.com> | 2019-08-01 15:53:32 +0200 |
|---|---|---|
| committer | Moyster <oysterized@gmail.com> | 2019-08-01 18:11:34 +0200 |
| commit | cc42ef3e8d157fdf88ea008378dfe0c853d6903c (patch) | |
| tree | 809a6367bf5e75b41582aa44d9454ec4f9fe336b | |
| parent | 12cf6bd4b583fca525beb8597fae027e9e9a7cdf (diff) | |
kernel: don't use ccache to build kernel
| -rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -245,7 +245,7 @@ CONFIG_SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \ else if [ -x /bin/bash ]; then echo /bin/bash; \ else echo sh; fi ; fi) -HOSTCC = ccache gcc +HOSTCC = gcc HOSTCXX = g++ HOSTCFLAGS = -Wall -Wmissing-prototypes -Wstrict-prototypes -O2 -fomit-frame-pointer -std=gnu89 HOSTCXXFLAGS = -O2 @@ -346,7 +346,7 @@ include $(srctree)/scripts/Kbuild.include AS = $(CROSS_COMPILE)as LD = $(CROSS_COMPILE)ld -CC = ccache $(CROSS_COMPILE)gcc +CC = $(CROSS_COMPILE)gcc CPP = $(CC) -E AR = $(CROSS_COMPILE)ar NM = $(CROSS_COMPILE)nm |
