From a2b068064219f18d52c6c00487ef3b62c816fc21 Mon Sep 17 00:00:00 2001 From: DavidKorczynski Date: Thu, 2 Feb 2023 15:12:30 +0000 Subject: [PATCH] muduo: do not build examples (#9560) The examples are not needed. This reduces the build and helps avoid an error that affects the Fuzz Introspector build. --- projects/muduo/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/muduo/build.sh b/projects/muduo/build.sh index 023146ec7..bf0aa0077 100755 --- a/projects/muduo/build.sh +++ b/projects/muduo/build.sh @@ -17,7 +17,7 @@ sed -i '34 a $ENV{CXXFLAGS}' CMakeLists.txt mkdir -p build-dir && cd build-dir -cmake -DCMAKE_BUILD_TYPE="release" \ +cmake -DCMAKE_BUILD_TYPE="release" -DMUDUO_BUILD_EXAMPLES=OFF \ .. make -j$(nproc)