blob: 16e9d9fa694ea3110370cf5e8b15867b82a7ebad [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
Wyatt Heplera74f7b02020-07-23 14:10:56 -0700100* ``capture_output``: Optional boolean. If true, script output is hidden unless
101 the script fails with an error. Defaults to true.
102* ``stamp``: Optional variable indicating whether to automatically create a
103 dummy output file for the script. This allows running scripts without
104 specifying ``outputs``. If ``stamp`` is true, a generic output file is
105 used. If ``stamp`` is a file path, that file is used as a stamp file. Like any
106 output file, ``stamp`` must be in the build directory. Defaults to false.
Alexei Frolov69ad1922019-12-13 13:11:32 -0800107
Wyatt Hepler8224a642020-07-29 08:55:56 -0700108**Expressions**
109
110``pw_python_script`` evaluates expressions in ``args``, the arguments passed to
111the script. These expressions function similarly to generator expressions in
112CMake. Expressions may be passed as a standalone argument or as part of another
113argument. A single argument may contain multiple expressions.
114
115Generally, these expressions are used within templates rather than directly in
116BUILD.gn files. This allows build code to use GN labels without having to worry
117about converting them to files.
118
Wyatt Hepler53a06fb2020-07-31 13:04:56 -0700119The following expressions are supported:
Wyatt Hepler8224a642020-07-29 08:55:56 -0700120
121.. describe:: <TARGET_FILE(gn_target)>
122
123 Evaluates to the output file of the provided GN target. For example, the
124 expression
125
126 .. code::
127
128 "<TARGET_FILE(//foo/bar:static_lib)>"
129
130 might expand to
131
132 .. code::
133
134 "/home/User/project_root/out/obj/foo/bar/static_lib.a"
135
136 ``TARGET_FILE`` parses the ``.ninja`` file for the GN target, so it should
137 always find the correct output file, regardless of the toolchain's or target's
138 configuration. Some targets, such as ``source_set`` and ``group`` targets, do
139 not have an output file, and attempting to use ``TARGET_FILE`` with them
140 results in an error.
141
142 ``TARGET_FILE`` only resolves GN target labels to their outputs. To resolve
143 paths generally, use the standard GN approach of applying the
144 ``rebase_path(path)`` function. With default arguments, ``rebase_path``
145 converts the provided GN path or list of paths to be relative to the build
146 directory, from which all build commands and scripts are executed.
147
Wyatt Hepler53a06fb2020-07-31 13:04:56 -0700148.. describe:: <TARGET_FILE_IF_EXISTS(gn_target)>
149
150 ``TARGET_FILE_IF_EXISTS`` evaluates to the output file of the provided GN
151 target, if the output file exists. If the output file does not exist, the
152 entire argument that includes this expression is omitted, even if there is
153 other text or another expression.
154
155 For example, consider this expression:
156
157 .. code::
158
159 "--database=<TARGET_FILE_IF_EXISTS(//alpha/bravo)>"
160
161 If the ``//alpha/bravo`` target file exists, this might expand to the
162 following:
163
164 .. code::
165
166 "--database=/home/User/project/out/obj/alpha/bravo/bravo.elf"
167
168 If the ``//alpha/bravo`` target file does not exist, the entire
169 ``--database=`` argument is omitted from the script arguments.
170
171.. describe:: <TARGET_OBJECTS(gn_target)>
172
173 Evaluates to the object files of the provided GN target. Expands to a separate
174 argument for each object file. If the target has no object files, the argument
175 is omitted entirely. Because it does not expand to a single expression, the
176 ``<TARGET_OBJECTS(...)>`` expression may not have leading or trailing text.
177
178 For example, the expression
179
180 .. code::
181
182 "<TARGET_OBJECTS(//foo/bar:a_source_set)>"
183
184 might expand to multiple separate arguments:
185
186 .. code::
187
188 "/home/User/project_root/out/obj/foo/bar/a_source_set.file_a.cc.o"
189 "/home/User/project_root/out/obj/foo/bar/a_source_set.file_b.cc.o"
190 "/home/User/project_root/out/obj/foo/bar/a_source_set.file_c.cc.o"
191
Alexei Frolov69ad1922019-12-13 13:11:32 -0800192**Example**
193
194.. code::
195
196 import("$dir_pw_build/python_script.gni")
197
Wyatt Hepler8224a642020-07-29 08:55:56 -0700198 pw_python_script("postprocess_main_image") {
199 script = "py/postprocess_binary.py"
200 args = [
201 "--database",
202 rebase_path("my/database.csv"),
203 "--binary=<TARGET_FILE(//firmware/images:main)>",
204 ]
Alexei Frolov69ad1922019-12-13 13:11:32 -0800205 stamp = true
206 }
207
208pw_input_group
209^^^^^^^^^^^^^^
210``pw_input_group`` defines a group of input files which are not directly
211processed by the build but are still important dependencies of later build
212steps. This is commonly used alongside metadata to propagate file dependencies
213through the build graph and force rebuilds on file modifications.
214
215For example ``pw_docgen`` defines a ``pw_doc_group`` template which outputs
216metadata from a list of input files. The metadata file is not actually part of
217the build, and so changes to any of the input files do not trigger a rebuild.
218This is problematic, as targets that depend on the metadata should rebuild when
219the inputs are modified but GN cannot express this dependency.
220
221``pw_input_group`` solves this problem by allowing a list of files to be listed
222in a target that does not output any build artifacts, causing all dependent
223targets to correctly rebuild.
224
225**Arguments**
226
227``pw_input_group`` accepts all arguments that can be passed to a ``group``
228target, as well as requiring one extra:
229
230* ``inputs``: List of input files.
231
232**Example**
233
234.. code::
235
236 import("$dir_pw_build/input_group.gni")
237
238 pw_input_group("foo_metadata") {
239 metadata = {
240 files = [
241 "x.foo",
242 "y.foo",
243 "z.foo",
244 ]
245 }
246 inputs = metadata.files
247 }
248
249Targets depending on ``foo_metadata`` will rebuild when any of the ``.foo``
250files are modified.
Rob Mohr84f234e2019-12-06 09:16:50 -0800251
Wyatt Hepler0fbcdfc2020-01-02 07:53:39 -0800252CMake / Ninja
253=============
Armando Montanezbcc194b2020-03-10 10:23:18 -0700254
255Pigweed's CMake support is provided primarily for projects that have an existing
256CMake build and wish to integrate Pigweed without switching to a new build
257system.
258
Wyatt Hepler0fbcdfc2020-01-02 07:53:39 -0800259The following command generates Ninja build files in the out/cmake directory.
260
261.. code:: sh
262
263 cmake -B out/cmake -S /path/to/pigweed -G Ninja
264
265Tests can be executed with the ``pw_run_tests_GROUP`` targets. To run the basic
266Pigweed tests, run ``ninja -C out/cmake pw_run_tests_modules``.
267
268CMake functions
269---------------
270CMake convenience functions are defined in ``pw_build/pigweed.cmake``.
271
272* ``pw_auto_add_simple_module`` -- For modules with only one library,
273 automatically declare the library and its tests.
274* ``pw_add_facade`` -- Declare a module facade.
275* ``pw_add_module_library`` -- Add a library that is part of a module.
276* ``pw_add_test`` -- Declare a test target.
277
278See ``pw_build/pigweed.cmake`` for the complete documentation of these
279functions.
280
281Special libraries that do not fit well with these functions are created with the
282standard CMake functions, such as ``add_library`` and ``target_link_libraries``.
283
284Use Pigweed from an existing CMake project
285------------------------------------------
286To use Pigweed libraries form a CMake-based project, simply include the Pigweed
287repository from a ``CMakeLists.txt``.
288
289.. code:: cmake
290
291 add_subdirectory(path/to/pigweed pigweed)
292
293All module libraries will be available as ``module_name`` or
294``module_name.sublibrary``.
295
296If desired, modules can be included individually.
297
298.. code:: cmake
299
300 include(path/to/pigweed/pw_build/pigweed.cmake)
301
302 add_subdirectory(path/to/pigweed/pw_some_module pw_some_module)
303 add_subdirectory(path/to/pigweed/pw_another_module pw_another_module)
304
Rob Mohr84f234e2019-12-06 09:16:50 -0800305Bazel
306=====
Armando Montanezbcc194b2020-03-10 10:23:18 -0700307
308Bazel is currently very experimental, and only builds for host.
309
Rob Mohr84f234e2019-12-06 09:16:50 -0800310The common configuration for Bazel for all modules is in the ``pigweed.bzl``
311file. The built-in Bazel rules ``cc_binary``, ``cc_library``, and ``cc_test``
312are wrapped with ``pw_cc_binary``, ``pw_cc_library``, and ``pw_cc_test``.
313These wrappers add parameters to calls to the compiler and linker.
314
315The ``BUILD`` file is merely a placeholder and currently does nothing.