Build: Use c++ as default HOST_CXX

This commit is contained in:
Jean-Baptiste Boric 2020-04-13 21:22:06 +02:00 committed by Andreas Kling
parent 8e08d111da
commit 0c25826138

View file

@ -33,7 +33,7 @@ ifneq ($(USE_HOST_CXX),)
CXX_WARNING_FLAGS += -Wno-unknown-warning-option
endif
ifeq ($(HOST_CXX),)
CXX = $(PRE_CXX) g++
CXX = $(PRE_CXX) c++
else
CXX = $(HOST_CXX)
endif