[PATCH 19.07 1/6] cmake.mk: set C/CXX compiler for host builds as well

Petr Štetiar ynezz at true.cz
Wed Dec 2 05:34:09 EST 2020


From: Rosen Penev <rosenp at gmail.com>

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 at gmail.com>
(cherry picked from commit f98878e4c17d5f11e78994b4fc456e6b60b2660f)
Signed-off-by: Petr Štetiar <ynezz at true.cz>
---
 include/cmake.mk | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/include/cmake.mk b/include/cmake.mk
index a5ba7d31bf92..1f764ab95593 100644
--- a/include/cmake.mk
+++ b/include/cmake.mk
@@ -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)" \



More information about the openwrt-devel mailing list