From 7aa68d863388dcfb2f91f08b22ae78c2e3aab95d Mon Sep 17 00:00:00 2001 From: Jesse Vincent Date: Tue, 17 Nov 2020 17:35:33 -0800 Subject: [PATCH] it helps if i name my env variables correctly --- testing/makefiles/testcase.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testing/makefiles/testcase.mk b/testing/makefiles/testcase.mk index 90025a38..4dded863 100644 --- a/testing/makefiles/testcase.mk +++ b/testing/makefiles/testcase.mk @@ -61,7 +61,7 @@ compile-sketch: OUTPUT_PATH="${LIB_DIR}" \ VERBOSE=${VERBOSE} \ $(MAKE) -f ${top_dir}/testing/makefiles/delegate.mk compile - $(CCACHE) $(call _arduino_prop,compiler.cpp.cmd) -o "${BIN_DIR}/${BIN_FILE}" \ + $(COMPILER_WRAPPER) $(call _arduino_prop,compiler.cpp.cmd) -o "${BIN_DIR}/${BIN_FILE}" \ -lpthread \ -g \ -w \ @@ -93,7 +93,7 @@ endif ${OBJ_DIR}/%.o: ${SRC_DIR}/%.cpp @echo "compile $@" install -d "${OBJ_DIR}" - $(CCACHE) $(call _arduino_prop,compiler.cpp.cmd) -o "$@" -c \ + $(COMPILER_WRAPPER) $(call _arduino_prop,compiler.cpp.cmd) -o "$@" -c \ -std=c++14 \ -I${top_dir} \ -I${top_dir}/src \