From cc09811303edd6797769ea53dd58d829feda2116 Mon Sep 17 00:00:00 2001 From: Federico Di Pierro Date: Wed, 24 Apr 2024 08:58:17 +0200 Subject: [PATCH] chore(cmake): enable modern bpf build by default. Signed-off-by: Federico Di Pierro --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 0588a814..484d1522 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -52,7 +52,7 @@ endif() # Modern BPF is not supported on not Linux systems and in MINIMAL_BUILD if(CMAKE_SYSTEM_NAME MATCHES "Linux" AND NOT MINIMAL_BUILD) - option(BUILD_FALCO_MODERN_BPF "Build modern BPF support for Falco" OFF) + option(BUILD_FALCO_MODERN_BPF "Build modern BPF support for Falco" ON) if(BUILD_FALCO_MODERN_BPF) add_definitions(-DHAS_MODERN_BPF) endif()