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

Revert libunwind being enabled in Docker and DEB builds. ()

* Revert "Enable libunwind in Docker images. ()"

This reverts commit 361f6d2563.

* Revert "Enable libunwind in DEB native packages. ()"

This reverts commit 3d09660c48.
This commit is contained in:
Austin S. Hemmelgarn 2025-01-21 10:12:14 -05:00 committed by GitHub
parent 3d09660c48
commit 0e0819668b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 0 additions and 9 deletions

View file

@ -59,22 +59,14 @@ 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
;;

View file

@ -27,7 +27,6 @@ WORKDIR /opt/netdata.git
RUN chmod +x netdata-installer.sh && \
cp -rp /deps/* /usr/local/ && \
/bin/echo -e "INSTALL_TYPE='oci'\nPREBUILT_ARCH='$(uname -m)'" > ./system/.install-type && \
NETDATA_CMAKE_OPTIONS="$(dpkg-architecture --equal i386 || echo "-DENABLE_LIBUNWIND=On")" \
CFLAGS="$(packaging/docker/gen-cflags.sh)" LDFLAGS="-Wl,--gc-sections" ./netdata-installer.sh --dont-wait --dont-start-it --use-system-protobuf \
${EXTRA_INSTALL_OPTS} --disable-ebpf --install-no-prefix / "$([ "$RELEASE_CHANNEL" = stable ] && echo --stable-channel)"