mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-02 01:13:26 +00:00
- Fix missing spaces between package names - Move optional software to its own section, no need to have it in the main requirement section if it is options - crosstool-NG instead of crosstool-next Generation. Treat that as a brand name. - Fixed command line for installing groups with yum - minor fixes Change-Id: Ib231bb09dea3aa6d3af00961eae8a2e3d6ded011 Signed-off-by: Anas Nashif <anas.nashif@intel.com>
34 lines
786 B
ReStructuredText
34 lines
786 B
ReStructuredText
.. _Requirements:
|
|
|
|
Requirements
|
|
############
|
|
|
|
Install the following requirements on the build host system using either
|
|
apt-get or yum.
|
|
|
|
.. note::
|
|
Minor version updates of the listed required packages might also
|
|
work.
|
|
|
|
.. _GeneralDevelopment:
|
|
|
|
Packages Required for General Development
|
|
#########################################
|
|
|
|
Install the required packages in a Ubuntu host system, type:
|
|
|
|
.. code-block:: bash
|
|
|
|
$ sudo apt-get install git make gcc gcc-multilib g++ \
|
|
libc6-dev-i386 g++-multilib
|
|
|
|
Install the required packages in a Fedora host system, type:
|
|
|
|
.. code-block:: bash
|
|
|
|
$ sudo yum groupinstall "Development Tools"
|
|
$ sudo yum install git make gcc glib-devel.i686 \
|
|
glib2-devel.i686 g++ libc6-dev-i386 g++-multilib \
|
|
glibc-static libstdc++-static
|
|
|