-
Hi, I have found this great library - however, as I am trying to cross compile a huge c++ framework to the web using Emscripten I was wondering if it is possible to use this with emscripten? I can compile the basic gmp library to use it with Emscripten, but have the Problem that it doesn't support 'long long' datatype. Thanks for your help :) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
It's possible to expose it through Emscripten but it's quite complicated to link the two wasm binaries properly. It's easier to take a look on how I managed to fix the 'long long' issue here: gmp-wasm/binding/gmp/Dockerfile Line 17 in f418285 |
Beta Was this translation helpful? Give feedback.
It's possible to expose it through Emscripten but it's quite complicated to link the two wasm binaries properly. It's easier to take a look on how I managed to fix the 'long long' issue here:
gmp-wasm/binding/gmp/Dockerfile
Line 17 in f418285