tree: 803c6adc6a2852a467947df5aba56dfeec17ccb1 [path history] [tgz]
  1. amd64/
  2. arm/
  3. arm64/
  4. x86/
  5. make.defaults
  6. parent
  7. README.md
profiles/features/sanitizers/coverage/README.md

Chrome OS coverage build profile

This directory contains the changes needed to build a board's packages with coverage profiling.

Building a board with coverage

To build packages with coverage profile for a board, create a profile in the overlays and point its parent to the appropriate architecture here. For example, to add an coverage profile for eve:

$ mkdir -p overlays/overlay-eve/profiles/coverage
$ printf "../base\nchromiumos:features/sanitizers/coverage/amd64\n" > \
    overlays/overlay-eve/profiles/coverage/parent

A private profile may be needed as well.

$ mkdir -p private-overlays/overlay-eve-private/profiles/coverage
$ printf "../base\neve:coverage\n" > \
    private-overlays/overlay-eve-private/profiles/coverage/parent

To build the eve board with coverage profile, do:

$ setup_board --board=eve --profile=coverage
$ build_packages --board=eve