Hey, i’m playing around with creating HTML5 extensions for Defold.
I’ve tried to use embind (mostly for emval) to extend my interop capabilities. But it seems that cloud compiler does not have support for the --bind emcc flag that required for the embind.
Could you enable it on your side?
More specifically — i’m working on extension that allows to pass callbacks from lua to the js side. And embind (with emval) may be of great help here.
I’m trying to enable flag in my manifest file.
name: html5callback
platforms:
js-web:
context:
flags: ["--bind", "-std=c++11"]
wasm-web:
context:
flags: ["--bind", "-std=c++11"]