1
0
Fork 0
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.
hmz007 6d24f2138b
Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56)
3 years ago
..
include Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
README.md Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
std_overrides.mk Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
stdlib_wrapper.cc Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago

README.md

CHRE Overrides

CHRE provides nanoapps with a minimal list of overrides to standard library functions that are not supported by CHRE, but can be redirected to a supported function, or when failing silently should be of minimal consequences to the nanoapp. Two possible scenarios where the developers might need to use these overrides are:

  • Generated code
  • Third-party code/libraries

The overrides makefile is included in the nanoapp build by default, but the developers need to enable it by setting a flag in the nanoapp Makefile: CHRE_STD_OVERRIDES_ALLOWED = true

It is expected that the nanoapp developers only leverage these overrides while working towards zero overrides usage.