Emitting WASM binary using C API header file #4597
Unanswered
Shaikh-Ubaid
asked this question in
Q&A
Replies: 1 comment 1 reply
-
It sounds like |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In the C API, there is no function which could emit WebAssembly in text format (there is a function named
BinaryenModulePrint
which just prints the text format). I made the following function which emits the webassembly code (it is just a temporary hack which uses the overloadedcout
)I needed the
wasm
binary form of the WebAssembly Text. Is there any function which prints the binary format or emits it? Or is there any function which could be modified to emit binary format? Or is there a way in the C API library to convert the WebAssembly text format towasm
binary format?Beta Was this translation helpful? Give feedback.
All reactions