I have to include multiple libraries for a project - I've already succeeded in including multiple emscripten libraries but I cannot seem to access the preloaded MEMFS filesystem in the 2nd one.
In the second library I use the
--embed-file
parameter in the linker to embed a whole directory with the JS file output but when I access the files in the web console via
FS.stat()
I cannot access any file that was embedded.
Has anyone faced the same issue?