You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm running archlinux with kernel 5.18.3-arch1-1 and couldn't build sysdig with my system libraries because there is no system package for njson. Using USE_BUNDLED_DEPS=ON also doesn't work because of some GSASL ERROR, see here: falcosecurity/falco#2040
I used the following commands
mkdir build
cd build
cmake .. -DBUILD_BPF=ON -DUSE_BUNDLED_DEPS=OFF
make -j12 sysdig
To make this thing work, I need to modify the cmake/modules/nlohmann-json.cmake file to basically exclude this library from the USE_BUNDLED_DEPS=OFF option...like this:
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Hello ppl. from the internet,
I'm running archlinux with kernel 5.18.3-arch1-1 and couldn't build sysdig with my system libraries because there is no system package for njson. Using
USE_BUNDLED_DEPS=ON
also doesn't work because of some GSASL ERROR, see here: falcosecurity/falco#2040I used the following commands
mkdir build cd build cmake .. -DBUILD_BPF=ON -DUSE_BUNDLED_DEPS=OFF make -j12 sysdig
To make this thing work, I need to modify the
cmake/modules/nlohmann-json.cmake
file to basically exclude this library from theUSE_BUNDLED_DEPS=OFF
option...like this:to
Proposal
Add a cmake option to exclude njson from the
USE_BUNDLED_DEPS=OFF
effects.What do you think?
The text was updated successfully, but these errors were encountered: