Hi,
Setting dynamicLibraries to more than one .wasm files always provide this error :
Assertion failed: old table entries must remain the same
whatever .wasm files are used.
This is cause by this assert in the generated .js file :
for (var i = 0; i < tableBase; i++) {
assert(table.get(i) === oldTable[i], 'old table entries must remain the same');
}
The last index of oldTable[i] is always null although table.get(i) has a value.
Hi,
Setting dynamicLibraries to more than one .wasm files always provide this error :
whatever .wasm files are used.
This is cause by this assert in the generated .js file :
The last index of oldTable[i] is always null although table.get(i) has a value.