[openwrt/openwrt] cmake.mk: set C/CXX compiler for host builds as well
LEDE Commits
lede-commits at lists.infradead.org
Fri Nov 27 08:46:33 EST 2020
ynezz pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/f98878e4c17d5f11e78994b4fc456e6b60b2660f
commit f98878e4c17d5f11e78994b4fc456e6b60b2660f
Author: Rosen Penev <rosenp at gmail.com>
AuthorDate: Wed Nov 25 16:08:57 2020 -0800
cmake.mk: set C/CXX compiler for host builds as well
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>
---
include/cmake.mk | 2 ++
1 file changed, 2 insertions(+)
diff --git a/include/cmake.mk b/include/cmake.mk
index fec6da22ef..2cc10301aa 100644
--- a/include/cmake.mk
+++ b/include/cmake.mk
@@ -97,6 +97,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 lede-commits
mailing list