From b3b1bbd5bf314c8498f8c97251951193705e8b5a Mon Sep 17 00:00:00 2001 From: innovaker <66737976+innovaker@users.noreply.github.com> Date: Mon, 14 Jun 2021 21:25:29 +0100 Subject: [PATCH] refactor(docs): synchronize host dependencies with Zephyr documentation See: https://docs.zephyrproject.org/2.4.0/getting_started/index.html See: https://docs.zephyrproject.org/2.4.0/getting_started/installation_linux.html#installation-linux PR: zmkfirmware/zmk#838 --- docs/docs/development/setup.md | 44 ++++++++++++++++++---------------- 1 file changed, 23 insertions(+), 21 deletions(-) diff --git a/docs/docs/development/setup.md b/docs/docs/development/setup.md index 8738bf20..c43068b1 100644 --- a/docs/docs/development/setup.md +++ b/docs/docs/development/setup.md @@ -48,23 +48,24 @@ With the latest package information, you can now install the base dependencies: ```sh sudo apt install -y \ - autoconf \ - automake \ - build-essential \ - bzip2 \ ccache \ cmake \ device-tree-compiler \ dfu-util \ - g++ \ + file \ + g++-multilib \ gcc \ + gcc-multilib \ git \ - libtool \ + gperf \ + libsdl2-dev \ make \ ninja-build \ python3-dev \ python3-pip \ python3-setuptools \ + python3-tk \ + python3-wheel \ wget \ xz-utils ``` @@ -90,23 +91,24 @@ With the latest package information, you can now install the base dependencies: ```sh sudo apt install -y \ - autoconf \ - automake \ - build-essential \ - bzip2 \ ccache \ cmake \ device-tree-compiler \ dfu-util \ - g++ \ + file \ + g++-multilib \ gcc \ + gcc-multilib \ git \ - libtool \ + gperf \ + libsdl2-dev \ make \ ninja-build \ python3-dev \ python3-pip \ python3-setuptools \ + python3-tk \ + python3-wheel \ wget \ xz-utils ``` @@ -130,23 +132,23 @@ sudo dnf update With the latest package information, you can now install the base dependencies: ```sh +sudo dnf group install -y \ +"Development Tools" \ +"C Development Tools and Libraries" sudo dnf install -y \ - autoconf \ - automake \ - bzip2 \ + SDL2-devel \ ccache \ cmake \ dfu-util \ dtc \ - g++ \ - gcc \ + file \ git \ - libtool \ - make \ + glibc-devel.i686 \ + gperf \ + libstdc++-devel.i686 \ ninja-build \ - python3-devel \ python3-pip \ - python3-setuptools \ + python3-tkinter \ wget \ xz ```