From 08ebb9e91401416e8c8fa0519ab431d7df4c2b2c Mon Sep 17 00:00:00 2001 From: Chukun Pan Date: Tue, 21 Jan 2025 23:10:28 +0800 Subject: [PATCH] tools: ccache: disable build testing The ccache build relies on doctest, which is useless and can be disabled. Signed-off-by: Chukun Pan Link: https://github.com/openwrt/openwrt/pull/17700 Signed-off-by: Christian Marangi --- tools/ccache/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/ccache/Makefile b/tools/ccache/Makefile index 447bc3ea432..6a666a5680d 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))