blob: 1ceba0b699828e439c4ac3c753f65910ff1d612d [file] [log] [blame]
Heinrich Schuchardt70e38ee2020-09-05 10:58:53 +02001Building with GCC
2=================
3
4Dependencies
5------------
6
7For building U-Boot you need a GCC compiler for your host platform. If you
8are not building on the target platform you further need a GCC cross compiler.
9
10Debian based
11~~~~~~~~~~~~
12
13On Debian based systems the cross compiler packages are named
14gcc-<architecture>-linux-gnu.
15
16You could install GCC and the GCC cross compiler for the ARMv8 architecture with
17
18.. code-block:: bash
19
Heinrich Schuchardt40611912020-09-20 12:31:47 +020020 sudo apt-get install gcc gcc-aarch64-linux-gnu
Heinrich Schuchardt70e38ee2020-09-05 10:58:53 +020021
22Depending on the build targets further packages maybe needed
23
24.. code-block:: bash
25
26 sudo apt-get install bc bison build-essential coccinelle \
27 device-tree-compiler dfu-util efitools flex gdisk liblz4-tool \
28 libguestfs-tools libncurses-dev libpython3-dev libsdl2-dev libssl-dev \
29 lzma-alone openssl python3 python3-coverage python3-pyelftools \
30 python3-pytest python3-sphinxcontrib.apidoc python3-sphinx-rtd-theme swig
31
32Prerequisites
33-------------
34
35For some boards you have to build prerequisite files before you can build
36U-Boot, e.g. for the some boards you will need to build the ARM Trusted Firmware
37beforehand. Please, refer to the board specific documentation
38:doc:`../board/index`.
39
40Configuration
41-------------
42
43Directory configs/ contains the template configuration files for the maintained
44boards following the naming scheme::
45
46 <board name>_defconfig
47
48These files have been stripped of default settings. So you cannot use them
49directly. Instead their name serves as a make target to generate the actual
50configuration file .config. For instance the configuration template for the
51Odroid C2 board is called odroid-c2_defconfig. The corresponding .config file
52is generated by
53
54.. code-block:: bash
55
56 make odroid-c2_defconfig
57
58You can adjust the configuration using
59
60.. code-block:: bash
61
62 make menuconfig
63
64Building
65--------
66
67When cross compiling you will have to specify the prefix of the cross-compiler.
68You can either specify the value of the CROSS_COMPILE variable on the make
69command line or export it beforehand.
70
71.. code-block:: bash
72
73 CROSS_COMPILE=<compiler-prefix> make
74
75Assuming cross compiling on Debian for ARMv8 this would be
76
77.. code-block:: bash
78
79 CROSS_COMPILE=aarch64-linux-gnu- make
80
81Build parameters
82~~~~~~~~~~~~~~~~
83
84A list of available parameters for the make command can be obtained via
85
86.. code-block:: bash
87
88 make help
89
90You can speed up compilation by parallelization using the -j parameter, e.g.
91
92.. code-block:: bash
93
94 CROSS_COMPILE=aarch64-linux-gnu- make -j$(nproc)
95
96Further important build parameters are
97
98* O=<dir> - generate all output files in directory <dir>, including .config
99* V=1 - verbose build
100
101Other build targets
102~~~~~~~~~~~~~~~~~~~
103
104A list of all make targets can be obtained via
105
106.. code-block:: bash
107
108 make help
109
110Important ones are
111
112* clean - remove most generated files but keep the configuration
113* mrproper - remove all generated files + config + various backup files
114
115Installation
116------------
117
118The process for installing U-Boot on the target device is device specific.
119Please, refer to the board specific documentation :doc:`../board/index`.