enable ccache

This commit is contained in:
BuildTools 2019-07-20 23:02:37 -05:00
parent d95e20952c
commit b7d399cac1

View file

@ -32,6 +32,8 @@ CXXFLAGS := $(CFLAGS) -fno-rtti -fno-exceptions -std=gnu++17
ASFLAGS := -g $(ARCH)
LDFLAGS = -specs=$(DEVKITPRO)/libnx/switch.specs -g $(ARCH) -Wl,-Map,$(notdir $*.map)
CXX := `which ccache` $(CXX)
CC := `which ccache` $(CC)
ifneq ($(BUILD),$(notdir $(CURDIR)))