I'm not a C/C++ developer, but still I'm trying to port this library to JavaScript using Emscripten (compile it into WebAssembly).
I'm having some issues with files in src/backend/ref. For instance, #include "internal.h" doesn't work here. Next few lines also seem to require changes.
I'm not a C/C++ developer, but still I'm trying to port this library to JavaScript using Emscripten (compile it into WebAssembly).
I'm having some issues with files in
src/backend/ref
. For instance,#include "internal.h"
doesn't work here. Next few lines also seem to require changes.From my limited understanding following:
Should in fact be like this:
Emscripten uses clang if it makes any difference.
Am I missing something or this is indeed a bug?