You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.4 KiB
50 lines
1.4 KiB
7 months ago
|
.. _target-host:
|
||
|
|
||
|
----
|
||
|
host
|
||
|
----
|
||
|
The Pigweed host target is used for unit testing and some host side tooling.
|
||
|
|
||
|
Building
|
||
|
========
|
||
|
To build for this target, invoke ninja with the top-level "host" group as the
|
||
|
target to build.
|
||
|
|
||
|
.. code:: sh
|
||
|
|
||
|
$ ninja -C out host
|
||
|
|
||
|
There are two host toolchains, and both of them can be manually invoked by
|
||
|
replacing `host` with `host_clang` or `host_gcc`. Not all toolchains are
|
||
|
supported on all platforms. Unless working specifically on one toolchain, it is
|
||
|
recommended to leave this to the default.
|
||
|
|
||
|
Running Tests
|
||
|
=============
|
||
|
Tests are automatically run as part of the host build, but if you desire to
|
||
|
manually run tests, you may invoke them from a shell directly.
|
||
|
|
||
|
Example:
|
||
|
|
||
|
... code:: sh
|
||
|
|
||
|
$ ./out/host_[compiler]_debug/obj/pw_status/status_test
|
||
|
|
||
|
RPC server
|
||
|
==========
|
||
|
The host target implements a system RPC server that runs over a local socket,
|
||
|
defaulting to port 33000. To communicate with a process running the host RPC
|
||
|
server, use ``pw rpc -s localhost:33000 <protos>``.
|
||
|
|
||
|
Configuration
|
||
|
=============
|
||
|
The host target exposes a few options that may be used to change the host build
|
||
|
behavior.
|
||
|
|
||
|
pw_build_HOST_TOOLS
|
||
|
-------------------
|
||
|
Pigweed includes a number of host-only tooling that may be built as part of the
|
||
|
host build. These tools are included as part of the bootstrap, so it's only
|
||
|
necessary to enable this setting when modifying host tooling. This is
|
||
|
disabled by default.
|