summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChukun Pan2025-01-21 15:10:28 +0000
committerChristian Marangi2025-02-06 11:55:21 +0000
commit08ebb9e91401416e8c8fa0519ab431d7df4c2b2c (patch)
tree0fc3b2ac79d42146f5f80d5c21f5ab03eda06483
parente1451a53e1262837392a4d56aea45f53d6d826c6 (diff)
downloadopenwrt-08ebb9e91401416e8c8fa0519ab431d7df4c2b2c.tar.gz
tools: ccache: disable build testing
The ccache build relies on doctest, which is useless and can be disabled. Signed-off-by: Chukun Pan <amadeus@jmu.edu.cn> Link: https://github.com/openwrt/openwrt/pull/17700 Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
-rw-r--r--tools/ccache/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/ccache/Makefile b/tools/ccache/Makefile
index 447bc3ea43..6a666a5680 100644
--- a/tools/ccache/Makefile
+++ b/tools/ccache/Makefile
@@ -22,6 +22,7 @@ CMAKE_HOST_OPTIONS += \
-DCMAKE_SKIP_RPATH=FALSE \
-DCMAKE_INSTALL_RPATH="${STAGING_DIR_HOST}/lib" \
-DENABLE_DOCUMENTATION=OFF \
- -DREDIS_STORAGE_BACKEND=OFF
+ -DREDIS_STORAGE_BACKEND=OFF \
+ -DENABLE_TESTING=OFF
$(eval $(call HostBuild))