wasm-micro-runtime/core/iwasm
Benbuck Nason 7744e84607
ssp_config.h: Fix ifdef for android random api (#3444)
It looks like the preferred preprocessor check for Android is `__ANDROID__`
instead of `ANDROID`:
https://groups.google.com/g/android-ndk/c/cf9_f1SLXls

Change `(defined(ANDROID) && __ANDROID_API__ < 28)` to
`((defined(ANDROID) || defined(__ANDROID__)) && (__ANDROID_API__ < 28))`.
2024-05-18 20:23:34 +08:00
..
aot Update spec test to latest commit (#3293) 2024-05-17 10:40:47 +08:00
common Allow not copying the wasm binary in wasm-c-api and not referring to the binary in wasm/aot loader (#3389) 2024-05-17 09:00:08 +08:00
compilation aot compiler: Fix a type mismatch in compile_op_float_min_max (#3423) 2024-05-14 10:06:48 +08:00
doc Fix some more spelling issues (#3393) 2024-05-08 09:30:29 +08:00
fast-jit Add wasm module global type information APIs (#3406) 2024-05-10 09:15:58 +08:00
include Allow not copying the wasm binary in wasm-c-api and not referring to the binary in wasm/aot loader (#3389) 2024-05-17 09:00:08 +08:00
interpreter Update spec test to latest commit (#3293) 2024-05-17 10:40:47 +08:00
libraries ssp_config.h: Fix ifdef for android random api (#3444) 2024-05-18 20:23:34 +08:00
README.md Add architecture diagram for wasm globals and classic-interp stack frame (#2058) 2023-03-25 09:39:20 +08:00