From e6731d26f9a9fa1bf1049aaca7e32f0d720319fd Mon Sep 17 00:00:00 2001 From: Ramon Roche Date: Wed, 2 Oct 2024 20:54:44 -0700 Subject: [PATCH] setup: install zeromq on ubuntu 24.04 targets --- Tools/setup/ubuntu.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Tools/setup/ubuntu.sh b/Tools/setup/ubuntu.sh index efa7eebd42..046617e412 100755 --- a/Tools/setup/ubuntu.sh +++ b/Tools/setup/ubuntu.sh @@ -150,7 +150,18 @@ if [[ $INSTALL_NUTTX == "true" ]]; then libncurses6 \ libncurses-dev \ libncursesw6 \ + libzmq3-dev \ + libunwind-dev \ ; + + # Ubuntu 24.04 requires ZeroMQ + git clone https://github.com/zeromq/cppzmq.git + cd cppzmq + mkdir build + cd build + cmake .. + sudo make install + cd ../.. else sudo DEBIAN_FRONTEND=noninteractive apt-get -y --quiet --no-install-recommends install \ libncurses5 \