From 250a2bfdff1f8691b1caa918d5091935f9aad49a Mon Sep 17 00:00:00 2001 From: Ramon Roche Date: Wed, 2 Oct 2024 20:56:27 -0700 Subject: [PATCH] setup: install libunwind on Ubuntu 22.04 targets The following packages have unmet dependencies: libgstreamer1.0-dev : Depends: libunwind-dev --- Tools/setup/ubuntu.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Tools/setup/ubuntu.sh b/Tools/setup/ubuntu.sh index 046617e412..c7e8ef7625 100755 --- a/Tools/setup/ubuntu.sh +++ b/Tools/setup/ubuntu.sh @@ -144,6 +144,11 @@ if [[ $INSTALL_NUTTX == "true" ]]; then kconfig-frontends \ ; fi + if [[ "${UBUNTU_RELEASE}" == "22.04" ]]; then + sudo DEBIAN_FRONTEND=noninteractive apt-get -y --quiet --no-install-recommends install \ + libunwind-dev \ + ; + fi if [[ "${UBUNTU_RELEASE}" == "24.04" ]]; then sudo DEBIAN_FRONTEND=noninteractive apt-get -y --quiet --no-install-recommends install \ kconfig-frontends \