Creating the import and export of memory and tables in the output of a web assembly

Is it possible to import memory and tables (and / or export) when setting up a web assembly using clang ( --target=wasm32-unknown-unknown-wasm)?

+4
source share
1 answer

LLD now supports importing memory tables and functions.

0
source

Source: https://habr.com/ru/post/1683006/


All Articles