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

..--

include/23-Nov-2023-3113

README.mdD23-Nov-2023694 1913

std_overrides.mkD23-Nov-2023368 134

stdlib_wrapper.ccD23-Nov-20232.8 KiB8130

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 default, but the
13developers need to enable it by setting a flag in the nanoapp Makefile:
14`CHRE_STD_OVERRIDES_ALLOWED = true`
15
16It is expected that the nanoapp developers only leverage these overrides while
17working towards zero overrides usage.
18
19