cmake.mk: set C/CXX compiler for host builds as well
authorRosen Penev <rosenp@gmail.com>
Thu, 26 Nov 2020 00:08:57 +0000 (16:08 -0800)
committerRISCi_ATOM <bob@bobcall.me>
Sun, 6 Dec 2020 06:35:13 +0000 (01:35 -0500)
Without this, cmake will use whatever CC/CXX is set to, which could be
clang. In that case, at least libjson-c/host will fail to compile.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
(cherry picked from commit f98878e4c17d5f11e78994b4fc456e6b60b2660f)

include/cmake.mk

index 75bf0d751c1c1ecd73dd18c6d25737e18953bb34..e33d75d7caf0254a44bee748129cd874607272af 100644 (file)
@@ -90,6 +90,8 @@ define Host/Configure/Default
                LDFLAGS="$(HOST_LDFLAGS)" \
                cmake \
                        -DCMAKE_BUILD_TYPE=Release \
+                       -DCMAKE_C_COMPILER="$(HOSTCC)" \
+                       -DCMAKE_CXX_COMPILER="$(HOSTCXX)" \
                        -DCMAKE_C_FLAGS_RELEASE="-DNDEBUG" \
                        -DCMAKE_CXX_FLAGS_RELEASE="-DNDEBUG" \
                        -DCMAKE_EXE_LINKER_FLAGS:STRING="$(HOST_LDFLAGS)" \