From 69c24b1ddb423af977939707713e4762dc1ded2b Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Fri, 20 Dec 2019 20:11:20 +0100 Subject: [PATCH] Build: Add PRE_CXX before the host CXX as well This allows the use of ccache for building the host-side tools. --- Makefile.common | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.common b/Makefile.common index 893e8d6d79..09f79b23ba 100644 --- a/Makefile.common +++ b/Makefile.common @@ -32,7 +32,7 @@ LDFLAGS += \ VERBOSE = 0 ifneq ($(HOST_CXX),) - CXX = g++ + CXX = $(PRE_CXX) g++ AS = as LINK = ld OBJ_SUFFIX ?= .host