blob: 05b31dc91b696daa903e832fe294bf911c0b2051 [file] [log] [blame]
Rob Mohr84f234e2019-12-06 09:16:50 -08001.. default-domain:: cpp
2
3.. highlight:: sh
4
Alexei Frolovf6753902020-07-08 11:01:45 -07005.. _chapter-pw-build:
Alexei Frolov9d169d52020-03-03 17:20:06 -08006
Rob Mohr84f234e2019-12-06 09:16:50 -08007--------
8pw_build
9--------
Alexei Frolov9d169d52020-03-03 17:20:06 -080010Pigweed's modules aim to be easily integratable into both new and existing
11embedded projects. To that goal, the ``pw_build`` module provides support for
12multiple build systems. Our personal favorite is `GN`_/`Ninja`_, which is used
13by upstream developers for its speed and flexibility. `CMake`_ and `Bazel`_
14build files are also provided by all modules, allowing Pigweed to be added to a
15project with minimal effort.
Rob Mohr84f234e2019-12-06 09:16:50 -080016
17.. _GN: https://gn.googlesource.com/gn/
18.. _Ninja: https://ninja-build.org/
Alexei Frolov9d169d52020-03-03 17:20:06 -080019.. _CMake: https://cmake.org/
Rob Mohr84f234e2019-12-06 09:16:50 -080020.. _Bazel: https://bazel.build/
21
Alexei Frolov9d169d52020-03-03 17:20:06 -080022Beyond just compiling code, Pigweed’s GN build system can also:
23
24* Generate HTML documentation, via our Sphinx integration (with ``pw_docgen``)
Armando Montanez0054a9b2020-03-13 13:06:24 -070025* Display memory usage report cards (with ``pw_bloat``)
Alexei Frolov9d169d52020-03-03 17:20:06 -080026* Incrementally run unit tests after code changes (with ``pw_target_runner``)
27* And more!
28
29These are only supported in the GN build, so we recommend using it if possible.
30
Rob Mohr84f234e2019-12-06 09:16:50 -080031GN / Ninja
32==========
Armando Montanezbcc194b2020-03-10 10:23:18 -070033The GN / Ninja build system is the primary build system used for upstream
34Pigweed development, and is the most tested and feature-rich build system
35Pigweed offers.
Rob Mohr84f234e2019-12-06 09:16:50 -080036
Armando Montanezbcc194b2020-03-10 10:23:18 -070037This module's ``build.gn`` file contains a number of C/C++ ``config``
38declarations that are used by upstream Pigweed to set some architecture-agnostic
39compiler defaults. (See Pigweed's ``//BUILDCONFIG.gn``)
40
Armando Montanez0054a9b2020-03-13 13:06:24 -070041``pw_build`` also provides several useful GN templates that are used throughout
Armando Montanezbcc194b2020-03-10 10:23:18 -070042Pigweed.
Alexei Frolov69ad1922019-12-13 13:11:32 -080043
44Templates
45---------
46
Alexei Frolovedd2f142020-06-09 19:11:27 -070047Target types
48^^^^^^^^^^^^
Alexei Frolov69ad1922019-12-13 13:11:32 -080049.. code::
50
Alexei Frolovedd2f142020-06-09 19:11:27 -070051 import("$dir_pw_build/target_types.gni")
Alexei Frolov69ad1922019-12-13 13:11:32 -080052
Alexei Frolovedd2f142020-06-09 19:11:27 -070053 pw_source_set("my_library") {
54 sources = [ "lib.cc" ]
55 }
56
57Pigweed defines wrappers around the four basic GN binary types ``source_set``,
58``executable``, ``static_library``, and ``shared_library``. These wrappers apply
59default arguments to each target as specified in the ``default_configs`` and
60``default_public_deps`` build args. Additionally, they allow defaults to be
61removed on a per-target basis using ``remove_configs`` and
62``remove_public_deps`` variables, respectively.
63
64The ``pw_executable`` template provides additional functionality around building
65complete binaries. As Pigweed is a collection of libraries, it does not know how
66its final targets are built. ``pw_executable`` solves this by letting each user
67of Pigweed specify a global executable template for their target, and have
68Pigweed build against it. This is controlled by the build variable
69``pw_executable_config.target_type``, specifying the name of the executable
70template for a project.
Alexei Frolov69ad1922019-12-13 13:11:32 -080071
72.. tip::
73
74 Prefer to use ``pw_executable`` over plain ``executable`` targets to allow
75 cleanly building the same code for multiple target configs.
76
77**Arguments**
78
Alexei Frolovedd2f142020-06-09 19:11:27 -070079All of the ``pw_*`` target type overrides accept any arguments, as they simply
80forward them through to the underlying target.
Alexei Frolov69ad1922019-12-13 13:11:32 -080081
82pw_python_script
83^^^^^^^^^^^^^^^^
84The ``pw_python_script`` template is a convenience wrapper around ``action`` for
Wyatt Hepler8224a642020-07-29 08:55:56 -070085running Python scripts. The main benefit it provides is resolution of GN target
86labels to compiled binary files. This allows Python scripts to be written
87independently of GN, taking only filesystem paths as arguments.
Alexei Frolov69ad1922019-12-13 13:11:32 -080088
89Another convenience provided by the template is to allow running scripts without
90any outputs. Sometimes scripts run in a build do not directly produce output
91files, but GN requires that all actions have an output. ``pw_python_script``
92solves this by accepting a boolean ``stamp`` argument which tells it to create a
93dummy output file for the action.
94
95**Arguments**
96
97``pw_python_script`` accepts all of the arguments of a regular ``action``
98target. Additionally, it has some of its own arguments:
99
100* ``stamp``: Optional boolean indicating whether to automatically create a dummy
101 output file for the script. This allows running scripts without specifying any
102 ``outputs``.
103
Wyatt Hepler8224a642020-07-29 08:55:56 -0700104**Expressions**
105
106``pw_python_script`` evaluates expressions in ``args``, the arguments passed to
107the script. These expressions function similarly to generator expressions in
108CMake. Expressions may be passed as a standalone argument or as part of another
109argument. A single argument may contain multiple expressions.
110
111Generally, these expressions are used within templates rather than directly in
112BUILD.gn files. This allows build code to use GN labels without having to worry
113about converting them to files.
114
115Currently, only one expression is supported.
116
117.. describe:: <TARGET_FILE(gn_target)>
118
119 Evaluates to the output file of the provided GN target. For example, the
120 expression
121
122 .. code::
123
124 "<TARGET_FILE(//foo/bar:static_lib)>"
125
126 might expand to
127
128 .. code::
129
130 "/home/User/project_root/out/obj/foo/bar/static_lib.a"
131
132 ``TARGET_FILE`` parses the ``.ninja`` file for the GN target, so it should
133 always find the correct output file, regardless of the toolchain's or target's
134 configuration. Some targets, such as ``source_set`` and ``group`` targets, do
135 not have an output file, and attempting to use ``TARGET_FILE`` with them
136 results in an error.
137
138 ``TARGET_FILE`` only resolves GN target labels to their outputs. To resolve
139 paths generally, use the standard GN approach of applying the
140 ``rebase_path(path)`` function. With default arguments, ``rebase_path``
141 converts the provided GN path or list of paths to be relative to the build
142 directory, from which all build commands and scripts are executed.
143
Alexei Frolov69ad1922019-12-13 13:11:32 -0800144**Example**
145
146.. code::
147
148 import("$dir_pw_build/python_script.gni")
149
Wyatt Hepler8224a642020-07-29 08:55:56 -0700150 pw_python_script("postprocess_main_image") {
151 script = "py/postprocess_binary.py"
152 args = [
153 "--database",
154 rebase_path("my/database.csv"),
155 "--binary=<TARGET_FILE(//firmware/images:main)>",
156 ]
Alexei Frolov69ad1922019-12-13 13:11:32 -0800157 stamp = true
158 }
159
160pw_input_group
161^^^^^^^^^^^^^^
162``pw_input_group`` defines a group of input files which are not directly
163processed by the build but are still important dependencies of later build
164steps. This is commonly used alongside metadata to propagate file dependencies
165through the build graph and force rebuilds on file modifications.
166
167For example ``pw_docgen`` defines a ``pw_doc_group`` template which outputs
168metadata from a list of input files. The metadata file is not actually part of
169the build, and so changes to any of the input files do not trigger a rebuild.
170This is problematic, as targets that depend on the metadata should rebuild when
171the inputs are modified but GN cannot express this dependency.
172
173``pw_input_group`` solves this problem by allowing a list of files to be listed
174in a target that does not output any build artifacts, causing all dependent
175targets to correctly rebuild.
176
177**Arguments**
178
179``pw_input_group`` accepts all arguments that can be passed to a ``group``
180target, as well as requiring one extra:
181
182* ``inputs``: List of input files.
183
184**Example**
185
186.. code::
187
188 import("$dir_pw_build/input_group.gni")
189
190 pw_input_group("foo_metadata") {
191 metadata = {
192 files = [
193 "x.foo",
194 "y.foo",
195 "z.foo",
196 ]
197 }
198 inputs = metadata.files
199 }
200
201Targets depending on ``foo_metadata`` will rebuild when any of the ``.foo``
202files are modified.
Rob Mohr84f234e2019-12-06 09:16:50 -0800203
Wyatt Hepler0fbcdfc2020-01-02 07:53:39 -0800204CMake / Ninja
205=============
Armando Montanezbcc194b2020-03-10 10:23:18 -0700206
207Pigweed's CMake support is provided primarily for projects that have an existing
208CMake build and wish to integrate Pigweed without switching to a new build
209system.
210
Wyatt Hepler0fbcdfc2020-01-02 07:53:39 -0800211The following command generates Ninja build files in the out/cmake directory.
212
213.. code:: sh
214
215 cmake -B out/cmake -S /path/to/pigweed -G Ninja
216
217Tests can be executed with the ``pw_run_tests_GROUP`` targets. To run the basic
218Pigweed tests, run ``ninja -C out/cmake pw_run_tests_modules``.
219
220CMake functions
221---------------
222CMake convenience functions are defined in ``pw_build/pigweed.cmake``.
223
224* ``pw_auto_add_simple_module`` -- For modules with only one library,
225 automatically declare the library and its tests.
226* ``pw_add_facade`` -- Declare a module facade.
227* ``pw_add_module_library`` -- Add a library that is part of a module.
228* ``pw_add_test`` -- Declare a test target.
229
230See ``pw_build/pigweed.cmake`` for the complete documentation of these
231functions.
232
233Special libraries that do not fit well with these functions are created with the
234standard CMake functions, such as ``add_library`` and ``target_link_libraries``.
235
236Use Pigweed from an existing CMake project
237------------------------------------------
238To use Pigweed libraries form a CMake-based project, simply include the Pigweed
239repository from a ``CMakeLists.txt``.
240
241.. code:: cmake
242
243 add_subdirectory(path/to/pigweed pigweed)
244
245All module libraries will be available as ``module_name`` or
246``module_name.sublibrary``.
247
248If desired, modules can be included individually.
249
250.. code:: cmake
251
252 include(path/to/pigweed/pw_build/pigweed.cmake)
253
254 add_subdirectory(path/to/pigweed/pw_some_module pw_some_module)
255 add_subdirectory(path/to/pigweed/pw_another_module pw_another_module)
256
Rob Mohr84f234e2019-12-06 09:16:50 -0800257Bazel
258=====
Armando Montanezbcc194b2020-03-10 10:23:18 -0700259
260Bazel is currently very experimental, and only builds for host.
261
Rob Mohr84f234e2019-12-06 09:16:50 -0800262The common configuration for Bazel for all modules is in the ``pigweed.bzl``
263file. The built-in Bazel rules ``cc_binary``, ``cc_library``, and ``cc_test``
264are wrapped with ``pw_cc_binary``, ``pw_cc_library``, and ``pw_cc_test``.
265These wrappers add parameters to calls to the compiler and linker.
266
267The ``BUILD`` file is merely a placeholder and currently does nothing.