Skip to content

Commit 88f36bb

Browse files
aescolarnashif
authored andcommitted
doc: getting_started: Add missing native_posix dependencies
For some time now we are building also the C++ samples in native_posix in CI. For those who want to run the whole suite locally, they require g++-multilib, which was missing in the Ubuntu list => Add it. Similarly the display sample is built in CI for native_posix64, so add the 64bit SDL dev library to both the Ubuntu and Fedora lists. Signed-off-by: Alberto Escolar Piedras <[email protected]>
1 parent 05822fc commit 88f36bb

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

doc/getting_started/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ We'll also install Zephyr's multi-purpose west tool.
7979
sudo apt install --no-install-recommends git cmake ninja-build gperf \
8080
ccache dfu-util device-tree-compiler wget \
8181
python3-pip python3-setuptools python3-tk python3-wheel xz-utils file \
82-
make gcc gcc-multilib
82+
make gcc gcc-multilib g++-multilib libsdl2-dev
8383
8484
#. Verify the version of cmake installed on your system using::
8585

doc/getting_started/installation_linux.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,15 +79,16 @@ need one.
7979
sudo apt-get install --no-install-recommends git cmake ninja-build gperf \
8080
ccache dfu-util device-tree-compiler wget \
8181
python3-pip python3-setuptools python3-tk python3-wheel xz-utils file \
82-
make gcc gcc-multilib
82+
make gcc gcc-multilib g++-multilib libsdl2-dev
8383
8484
.. group-tab:: Fedora
8585

8686
.. code-block:: console
8787
8888
sudo dnf group install "Development Tools" "C Development Tools and Libraries"
8989
dnf install git cmake ninja-build gperf ccache dfu-util dtc wget \
90-
python3-pip python3-tkinter xz file glibc-devel.i686 libstdc++-devel.i686
90+
python3-pip python3-tkinter xz file glibc-devel.i686 libstdc++-devel.i686 \
91+
SDL2-devel
9192
9293
.. group-tab:: Clear Linux
9394

0 commit comments

Comments
 (0)