Name Date Size #Lines LOC

..--

include/H25-Apr-2025-3113

README.mdH A D25-Apr-2025707 1913

std_overrides.mkH A D25-Apr-2025368 134

stdlib_wrapper.ccH A D25-Apr-20254.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