Skip to content

Commit

Permalink
Revert libunwind being enabled in Docker and DEB builds. (netdata#19450)
Browse files Browse the repository at this point in the history
* Revert "Enable libunwind in Docker images. (netdata#19409)"

This reverts commit 361f6d2.

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

This reverts commit 3d09660.
  • Loading branch information
Ferroin authored Jan 21, 2025
1 parent 3d09660 commit 0e08196
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 9 deletions.
8 changes: 0 additions & 8 deletions packaging/build-package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
;;
Expand Down
1 change: 0 additions & 1 deletion packaging/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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)"

Expand Down

0 comments on commit 0e08196

Please sign in to comment.