You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was wondering why I was getting the error "ReferenceError: FS is not defined" when my code tried to access the virtual filesystem. After digging into node_modules/nbind/src/nbind.gypi I found "-s", "NO_FILESYSTEM=1" in cflags.
Emscripten will supposedly only include the FS API based on usage , so unless I am missing something I see no reason to have this setting on by default. I wasn't able to find a way to override it so I had to remove the line from nbind.gypi.
Sorry if I'm spamming your project with issues but I figure that these will help others searching for the causes of any errors they encounter.
The text was updated successfully, but these errors were encountered:
I was wondering why I was getting the error "ReferenceError: FS is not defined" when my code tried to access the virtual filesystem. After digging into
node_modules/nbind/src/nbind.gypi
I found"-s", "NO_FILESYSTEM=1"
incflags
.Emscripten will supposedly only include the FS API based on usage , so unless I am missing something I see no reason to have this setting on by default. I wasn't able to find a way to override it so I had to remove the line from
nbind.gypi
.Sorry if I'm spamming your project with issues but I figure that these will help others searching for the causes of any errors they encounter.
The text was updated successfully, but these errors were encountered: