Enable Nuttx spec test option and register aot symbols (#1687)

Enable spec test option on Nuttx platform.
Register sqrt/sqrtf in aot global symbol map and
_fixdfdi/__floatundidf in xtensa symbol map.
This commit is contained in:
dongsheng28849455
2022-11-08 12:42:19 +08:00
committed by GitHub
parent 328fd59f43
commit f59ffa0d63
5 changed files with 31 additions and 2 deletions

View File

@ -451,6 +451,12 @@ aot_memmove(void *dest, const void *src, size_t n);
void *
aot_memset(void *s, int c, size_t n);
double
aot_sqrt(double x);
float
aot_sqrtf(float x);
#if WASM_ENABLE_BULK_MEMORY != 0
bool
aot_memory_init(AOTModuleInstance *module_inst, uint32 seg_index, uint32 offset,