• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

include/14-Jan-2024-3113

README.mdD14-Jan-2024707 1913

std_overrides.mkD14-Jan-2024368 134

stdlib_wrapper.ccD14-Jan-20244.1 KiB13571

README.md

1### CHRE Overrides
2
3CHRE provides nanoapps with a minimal list of overrides to standard library
4functions that are not supported by CHRE, but can be redirected to a supported
5function, or when failing silently should be of minimal consequences to the
6nanoapp. Two possible scenarios where the developers might need to use these
7overrides are:
8
9* Generated code
10* Third-party code/libraries
11
12The overrides makefile is included in the nanoapp build by and enabled by
13default, but the developers can disable it by setting a flag in the nanoapp Makefile:
14`CHRE_STD_OVERRIDES_ALLOWED = false`
15
16It is expected that the nanoapp developers only leverage these overrides while
17working towards zero overrides usage.
18
19