From fbac5b77ff6f70244d2b297ec7b4918f81f60c24 Mon Sep 17 00:00:00 2001 From: Leonardo Di Donato Date: Thu, 20 Aug 2020 14:13:20 +0000 Subject: [PATCH] build(cmake/modules): change driver version to 37aab8 This driver version brings into the following features: - fix for https://github.com/draios/sysdig/issues/1659 (correct handling of the pathnames args for *at syscalls) - update JQ + builtin oniguruma Signed-off-by: Leonardo Di Donato --- cmake/modules/sysdig.cmake | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/cmake/modules/sysdig.cmake b/cmake/modules/sysdig.cmake index faae09d7..5fbc4051 100644 --- a/cmake/modules/sysdig.cmake +++ b/cmake/modules/sysdig.cmake @@ -23,18 +23,18 @@ endif() file(MAKE_DIRECTORY ${SYSDIG_CMAKE_WORKING_DIR}) -# The sysdig git reference (branch name, commit hash, or tag) -# To update sysdig version for the next release, change the default below -# In case you want to test against another sysdig version just pass the variable - ie., `cmake -DSYSDIG_VERSION=dev ..` +# The sysdig git reference (branch name, commit hash, or tag) To update sysdig version for the next release, change the +# default below In case you want to test against another sysdig version just pass the variable - ie., `cmake +# -DSYSDIG_VERSION=dev ..` if(NOT SYSDIG_VERSION) - set(SYSDIG_VERSION "build/jq-update") # todo(fntlnz): revert this before merging - set(SYSDIG_CHECKSUM "SHA256=12541bcf2f3122c3e03bc71e5f39511d679c378d06d7c976527d13901d029410") + set(SYSDIG_VERSION "37aab8debf50140ca8796cfb732218d3ab123640") + set(SYSDIG_CHECKSUM "SHA256=48482e8299c092899f2516cc5a1db09fa2747fd03ec29fa555f42b62f1e38aeb") endif() set(PROBE_VERSION "${SYSDIG_VERSION}") # cd /path/to/build && cmake /path/to/source -execute_process(COMMAND "${CMAKE_COMMAND}" -DSYSDIG_VERSION=${SYSDIG_VERSION} -DSYSDIG_CHECKSUM=${SYSDIG_CHECKSUM} ${SYSDIG_CMAKE_SOURCE_DIR} WORKING_DIRECTORY ${SYSDIG_CMAKE_WORKING_DIR}) - +execute_process(COMMAND "${CMAKE_COMMAND}" -DSYSDIG_VERSION=${SYSDIG_VERSION} -DSYSDIG_CHECKSUM=${SYSDIG_CHECKSUM} + ${SYSDIG_CMAKE_SOURCE_DIR} WORKING_DIRECTORY ${SYSDIG_CMAKE_WORKING_DIR}) # todo(leodido, fntlnz) > use the following one when CMake version will be >= 3.13