From 9afbc7068fa0e88980c22229c6dbcdd60185414f Mon Sep 17 00:00:00 2001 From: DavidKorczynski Date: Fri, 26 May 2023 16:11:47 +0100 Subject: [PATCH] jsonnet: only build required libraries (#10398) We only need to build the static library in jsonnet so am restricting the build to do that. This enables Fuzz Introspector Signed-off-by: David Korczynski --- projects/jsonnet/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/jsonnet/build.sh b/projects/jsonnet/build.sh index a1d164d97..64003234e 100644 --- a/projects/jsonnet/build.sh +++ b/projects/jsonnet/build.sh @@ -19,7 +19,7 @@ mkdir jsonnet/build pushd jsonnet/build cmake -DCMAKE_C_COMPILER="$CC" -DCMAKE_CXX_COMPILER="$CXX" \ -DCMAKE_C_FLAGS="$CFLAGS" -DCMAKE_CXX_FLAGS="$CXXFLAGS" -DBUILD_TESTS=OFF .. -make -j$(nproc) +make -j$(nproc) libjsonnet_static popd INSTALL_DIR="$SRC/jsonnet"