setup: install zeromq on ubuntu 24.04 targets

This commit is contained in:
Ramon Roche
2024-10-02 20:54:44 -07:00
parent 0f7869691d
commit e6731d26f9
+11
View File
@@ -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 \