mirror of
https://github.com/netdata/netdata.git
synced 2025-04-06 22:38:55 +00:00
Enable libunwind in DEB native packages. (#19417)
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:
parent
361f6d2563
commit
3d09660c48
1 changed files with 8 additions and 0 deletions
|
@ -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
|
||||
;;
|
||||
|
|
Loading…
Add table
Reference in a new issue