From f59ce8c02409022367edf125887a04e8856cc2d3 Mon Sep 17 00:00:00 2001 From: wink <fa@art-core.org> Date: Tue, 23 Jul 2019 07:57:40 +0000 Subject: [PATCH] Update how-to-build.rst with copy/pastable package names --- Documentation/how-to-build.rst | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Documentation/how-to-build.rst b/Documentation/how-to-build.rst index c509bff4..ccde3e8c 100644 --- a/Documentation/how-to-build.rst +++ b/Documentation/how-to-build.rst @@ -9,11 +9,13 @@ Dependencies * **gcc**, **binutils** & **newlib** for ``arm-none-eabi``: The packages have slightly different names on different distros. - - Ubuntu: ``gcc-arm-none-eabi``, ``binutils-arm-none-eabi``, ``libnewlib-arm-none-eabi`` - - Arch: ``arm-none-eabi-gcc``, ``arm-none-eabi-binutils``, ``arm-none-eabi-newlib`` + - Ubuntu: ``apt install gcc-arm-none-eabi binutils-arm-none-eabi libnewlib-arm-none-eabi`` + - Arch: ``pacman -S arm-none-eabi-gcc arm-none-eabi-binutils arm-none-eabi-newlib`` - Alternative: Download `ARM's GNU toolchain`_. **TODO** * **python3**: For meson and various scripts needed for building. * **ninja**: Needed for meson. + - Ubuntu: ``apt install ninja-build`` + - Arch: ``pacman -S ninja`` * **meson** (>0.43.0): Unfortunately most distros only have very old versions of meson in their repositories. Instead, you'll probably save yourself a lot of headaches by installing meson from ``pip3 install --user meson``. -- GitLab