2020-09-04 23:00:59 +02:00
.. include :: /substitutions.rst
.. _install:
2020-12-06 03:24:34 +01:00
==========
2020-09-04 23:00:59 +02:00
Installing
==========
2020-12-06 03:24:34 +01:00
The first step to get started with NuttX is to install a series of required tools, a toolchain for the architecture
you will be working with and, finally, download NuttX source code itself.
2020-09-04 23:00:59 +02:00
Prerequisites
2020-12-06 03:24:34 +01:00
=============
2020-09-04 23:00:59 +02:00
2020-12-06 03:24:34 +01:00
First, install the following set of system dependencies according to your Operating System:
2020-10-18 18:48:44 +02:00
2020-12-06 03:24:34 +01:00
.. tabs ::
2020-09-04 23:00:59 +02:00
2020-12-06 03:24:34 +01:00
.. tab :: Linux (debian based)
2020-09-04 23:00:59 +02:00
2020-12-06 03:24:34 +01:00
Run the following command to install packages:
2020-09-04 23:00:59 +02:00
2020-12-06 03:24:34 +01:00
.. code-block :: console
2020-09-04 23:00:59 +02:00
2020-12-06 03:24:34 +01:00
$ sudo apt install \
bison flex gettext texinfo libncurses5-dev libncursesw5-dev \
gperf automake libtool pkg-config build-essential gperf genromfs \
libgmp-dev libmpc-dev libmpfr-dev libisl-dev binutils-dev libelf-dev \
libexpat-dev gcc-multilib g++-multilib picocom u-boot-tools util-linux
2020-09-04 23:00:59 +02:00
2020-09-11 23:55:50 +02:00
.. tab :: macOS
2020-12-06 03:24:34 +01:00
Run the following command to install packages:
2020-09-04 23:00:59 +02:00
2020-09-11 23:55:50 +02:00
.. code-block :: console
2020-09-04 23:00:59 +02:00
2020-09-11 23:55:50 +02:00
$ brew install x86_64-elf-gcc # Used by simulator
$ brew install u-boot-tools # Some platform integrate with u-boot
2020-09-04 23:00:59 +02:00
2020-09-11 23:55:50 +02:00
.. tab :: Windows / WSL
2020-09-04 23:00:59 +02:00
2021-02-08 02:11:47 +01:00
If you are are building Apache NuttX on Windows and using WSL follow
2020-09-11 23:55:50 +02:00
that installation guide for Linux. This has been verified against the
2021-02-08 02:11:47 +01:00
Ubuntu 18.04 version.
2020-09-04 23:00:59 +02:00
2020-09-11 23:55:50 +02:00
There may be complications interacting with
programming tools over USB. Recently support for USBIP was added to WSL 2
which has been used with the STM32 platform, but it is not trivial to configure:
https://github.com/rpasek/usbip-wsl2-instructions
2020-09-04 23:00:59 +02:00
2020-09-11 23:55:50 +02:00
.. tab :: Windows/Cygwin
2020-09-04 23:00:59 +02:00
2020-09-11 23:55:50 +02:00
Download and install `Cygwin <https://www.cygwin.com/> `_ using the minimal
installation in addition to these packages::
2020-09-04 23:00:59 +02:00
2020-09-11 23:55:50 +02:00
make bison libmpc-devel
gcc-core byacc automake-1.15
gcc-g++ gperf libncurses-devel
flex gdb libmpfr-devel
git unzip zlib-devel
2020-10-18 18:48:44 +02:00
2020-12-06 03:24:34 +01:00
KConfig frontend
----------------
2021-06-10 19:46:56 +02:00
NuttX configuration system uses `KConfig <https://www.kernel.org/doc/Documentation/kbuild/kconfig-language.txt> `_ which is exposed via a series of interactive menu-based *frontends* , part of the `` kconfig-frontends `` package. Depending on your OS you may use a precompiled package or you will have to build it from source, which is available in the `NuttX tools repository <https://bitbucket.org/nuttx/tools/src/master/kconfig-frontends/> `_ :
2020-12-06 03:24:34 +01:00
.. tabs ::
.. code-tab :: console Ubuntu 20.04 LTS and later
$ apt install kconfig-frontends
.. code-tab :: console MacOS, Ubuntu 18.04 LTS and earlier
2020-09-04 23:00:59 +02:00
2021-06-10 19:46:56 +02:00
$ git clone https://bitbucket.org/nuttx/tools.git
2020-12-06 03:24:34 +01:00
$ cd tools/kconfig-frontends
$ # on MacOS do the following:
$ patch < ../kconfig-macos.diff -p 1
$ ./configure --enable-mconf --disable-shared --enable-static --disable-gconf --disable-qconf --disable-nconf
$ # on Linux do the following:
2021-06-10 19:46:56 +02:00
$ ./configure --enable-mconf --disable-nconf --disable-gconf --disable-qconf
2020-12-06 03:24:34 +01:00
$ make
$ make install
Toolchain
=========
2020-09-04 23:00:59 +02:00
2020-09-11 23:55:50 +02:00
To build Apache NuttX you need the appropriate toolchain
according to your target platform. Some Operating Systems
such as Linux distribute toolchains for various architectures.
This is usually an easy choice however you should be aware
2020-10-18 18:48:44 +02:00
that in some cases the version offered by your OS may have
2020-09-11 23:55:50 +02:00
problems and it may better to use a widely used build from
another source.
The following example shows how to install a toolchain for
ARM architecture:
.. tabs ::
.. code-tab :: console Ubuntu (deb)
2020-10-18 18:48:44 +02:00
2020-09-11 23:55:50 +02:00
$ apt install gcc-arm-none-eabi binutils-arm-none-eabi
2020-10-18 18:48:44 +02:00
2020-09-11 23:55:50 +02:00
.. tab :: From arm.com
2020-10-18 18:48:44 +02:00
2020-09-11 23:55:50 +02:00
First, create a directory to hold the toolchain:
2020-10-18 18:48:44 +02:00
2020-09-11 23:55:50 +02:00
.. code-block :: console
2020-10-18 18:48:44 +02:00
2020-09-11 23:55:50 +02:00
$ usermod -a -G users $USER
$ # get a login shell that knows we're in this group:
$ su - $USER
$ sudo mkdir /opt/gcc
$ sudo chgrp -R users /opt/gcc
$ sudo chmod -R u+rw /opt/gcc
$ cd /opt/gcc
2020-10-18 18:48:44 +02:00
2020-09-11 23:55:50 +02:00
Download and extract toolchain:
2020-10-18 18:48:44 +02:00
2020-09-11 23:55:50 +02:00
.. code-block :: console
2020-10-18 18:48:44 +02:00
2020-09-11 23:55:50 +02:00
$ HOST_PLATFORM=x86_64-linux # use "mac" for macOS.
2021-02-08 02:11:47 +01:00
$ # For Windows there is a zip instead (gcc-arm-none-eabi-9-2019-q4-major-win32.zip)
2020-12-22 04:26:05 +01:00
$ curl -L -O https://developer.arm.com/-/media/Files/downloads/gnu-rm/9-2019q4/gcc-arm-none-eabi-9-2019-q4-major-${HOST_PLATFORM}.tar.bz2
2020-09-11 23:55:50 +02:00
$ tar xf gcc-arm-none-eabi-9-2019-q4-major-${HOST_PLATFORM}.tar.bz2
2020-10-18 18:48:44 +02:00
2020-09-11 23:55:50 +02:00
Add the toolchain to your `PATH` :
2020-10-18 18:48:44 +02:00
2020-09-11 23:55:50 +02:00
.. code-block :: console
2020-10-18 18:48:44 +02:00
2020-09-11 23:55:50 +02:00
$ echo "export PATH=/opt/gcc/gcc-arm-none-eabi-9-2019-q4-major/bin:$PATH" >> ~/.bashrc
2020-10-18 18:48:44 +02:00
2020-09-11 23:55:50 +02:00
You can edit your shell's rc files if you don't use bash.
2020-09-04 23:00:59 +02:00
2020-10-18 18:48:44 +02:00
.. tip ::
2020-09-11 23:55:50 +02:00
There are hints on how to get the latest tool chains for most supported
architectures in the Apache NuttX CI helper
`script <https://github.com/apache/incubator-nuttx-testing/blob/master/cibuild.sh> `_
and Docker `container <https://github.com/apache/incubator-nuttx-testing/blob/master/docker/linux/Dockerfile> `_
2020-12-06 03:24:34 +01:00
.. todo ::
Required toolchain should be part of each arch documentation (see `relevant issue <https://github.com/apache/incubator-nuttx/issues/2409> `_ ).
2020-09-04 23:00:59 +02:00
2020-12-06 03:24:34 +01:00
Download NuttX
==============
2020-09-04 23:00:59 +02:00
2020-12-06 03:24:34 +01:00
Apache NuttX is actively developed on GitHub. There are two main repositories, `nuttx <https://github.com/apache/incubator-nuttx> `_ and `apps <https://github.com/apache/incubator-nuttx-apps> `_ , where the latter is technically optional (but recommended for complete set of features). If you intend to contribute changes, you need the absolute latest version or you simply prefer to work using git, you should clone these repositories (recommended). Otherwise you can choose to download any `stable release <https://nuttx.apache.org/download/> `_ archive.
2020-09-04 23:00:59 +02:00
2020-09-11 23:55:50 +02:00
.. tabs ::
2020-10-18 18:48:44 +02:00
2020-12-06 03:24:34 +01:00
.. tab :: Clone git repositories
2020-09-11 23:55:50 +02:00
.. code-block :: console
2020-09-04 23:00:59 +02:00
2020-09-11 23:55:50 +02:00
$ mkdir nuttx
$ cd nuttx
$ git clone https://github.com/apache/incubator-nuttx.git nuttx
$ git clone https://github.com/apache/incubator-nuttx-apps apps
2020-09-04 23:00:59 +02:00
2020-09-11 23:55:50 +02:00
The development source code is also available as a compressed archive, should you need it:
2020-09-04 23:00:59 +02:00
2020-09-11 23:55:50 +02:00
.. code-block :: console
2020-09-04 23:00:59 +02:00
2020-12-06 03:24:34 +01:00
$ mkdir nuttx
$ cd nuttx
2020-12-22 04:26:05 +01:00
$ curl -L https://github.com/apache/incubator-nuttx/tarball/master -o nuttx.tar.gz
$ curl -L https://github.com/apache/incubator-nuttx-apps/tarball/master -o apps.tar.gz
2021-09-16 17:49:45 +02:00
$ tar zxf nuttx.tar.gz --one-top-level=nuttx --strip-components 1
$ tar zxf apps.tar.gz --one-top-level=apps --strip-components 1
2020-12-06 03:24:34 +01:00
There are also `` .zip `` archives available (useful for Windows users): just replace `` tarball `` with
`` zipball `` .
.. tab :: Download stable release
Go to `releases <https://nuttx.apache.org/download/> `_ and choose a version to download. The following
2021-09-16 17:49:45 +02:00
example uses version 10.1.0:
2020-09-04 23:00:59 +02:00
2020-12-06 03:24:34 +01:00
.. code-block :: console
$ mkdir nuttx
$ cd nuttx
2021-09-16 17:49:45 +02:00
$ curl -L https://www.apache.org/dyn/closer.lua/incubator/nuttx/10.1.0/apache-nuttx-10.1.0-incubating.tar.gz?action=download -o nuttx.tar.gz
$ curl -L https://www.apache.org/dyn/closer.lua/incubator/nuttx/10.1.0/apache-nuttx-apps-10.1.0-incubating.tar.gz?action=download -o apps.tar.gz
2020-12-06 03:24:34 +01:00
$ tar zxf nuttx.tar.gz
$ tar zxf apps.tar.gz