Build: Add PRE_CXX before the host CXX as well

This allows the use of ccache for building the host-side tools.
This commit is contained in:
Andreas Kling 2019-12-20 20:11:20 +01:00
parent ac25438d54
commit 69c24b1ddb
Notes: sideshowbarker 2024-07-19 10:47:51 +09:00

View file

@ -32,7 +32,7 @@ LDFLAGS += \
VERBOSE = 0
ifneq ($(HOST_CXX),)
CXX = g++
CXX = $(PRE_CXX) g++
AS = as
LINK = ld
OBJ_SUFFIX ?= .host