Browse Source

Build: Use c++ as default HOST_CXX

Jean-Baptiste Boric 5 years ago
parent
commit
0c25826138
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Makefile.common

+ 1 - 1
Makefile.common

@@ -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