-
We have a project that needs dynamic linking and may use Javascript functions in dynamic libraries Seems that either testJS function shouldn't be marked as GOT.func in .wasm or .sig should generated in JS for testJS Emscripten version: 3.1.8 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
In order to JS functions to be address taken you need to have |
Beta Was this translation helpful? Give feedback.
In order to JS functions to be address taken you need to have
test_JS__sig: 'v'
to you library JS file. The signature (in this case 'v') is a sequence of characters representing the first the return code then that arguments. Sovi
would a void function that takes a single int.