0
0
Fork 0
mirror of https://github.com/netdata/netdata.git synced 2025-04-06 22:38:55 +00:00

Enable libunwind in DEB native packages. ()

Only on 64-bit x86, 32-bit ARM, and 64-bit ARM for the moment (32-bit
x86 is broken because of issues in our handling of libunwind).
This commit is contained in:
Austin S. Hemmelgarn 2025-01-21 07:06:42 -05:00 committed by GitHub
parent 361f6d2563
commit 3d09660c48
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -59,14 +59,22 @@ case "${PKG_TYPE}" in
amd64)
add_cmake_option ENABLE_PLUGIN_XENSTAT On
add_cmake_option ENABLE_PLUGIN_EBPF On
add_cmake_option ENABLE_LIBUNWIND On
;;
arm64)
add_cmake_option ENABLE_PLUGIN_XENSTAT On
add_cmake_option ENABLE_PLUGIN_EBPF Off
add_cmake_option ENABLE_LIBUNWIND On
;;
armhf)
add_cmake_option ENABLE_PLUGIN_XENSTAT Off
add_cmake_option ENABLE_PLUGIN_EBPF Off
add_cmake_option ENABLE_LIBUNWIND On
;;
*)
add_cmake_option ENABLE_PLUGIN_XENSTAT Off
add_cmake_option ENABLE_PLUGIN_EBPF Off
add_cmake_option ENABLE_LIBUNWIND Off
;;
esac
;;