commit
f8d39cd8a5
@ -95,10 +95,10 @@ if [ "$DIST" = yes ]; then
|
||||
Module['TOTAL_MEMORY'] = root['sodium']['totalMemory'];
|
||||
}
|
||||
var _Module = Module;
|
||||
Module.ready = new Promise(function (resolve, reject) {
|
||||
Module.ready = new Promise(function(resolve, reject) {
|
||||
var Module = _Module;
|
||||
Module.onAbort = reject;
|
||||
Module.onRuntimeInitialized = function () {
|
||||
Module.onRuntimeInitialized = function() {
|
||||
try {
|
||||
/* Test arbitrary wasm function */
|
||||
Module._crypto_secretbox_keybytes();
|
||||
@ -107,15 +107,15 @@ if [ "$DIST" = yes ]; then
|
||||
reject(err);
|
||||
}
|
||||
};
|
||||
Module.useBackupModule = function () {
|
||||
Module.useBackupModule = function() {
|
||||
var Module = _Module;
|
||||
Module.onAbort = undefined;
|
||||
Module.onRuntimeInitialized = undefined;
|
||||
Module.useBackupModule = undefined;
|
||||
Object.keys(Module).forEach(function(k) {
|
||||
delete Module[k];
|
||||
});
|
||||
$(cat "${PREFIX}/lib/libsodium.asm.tmp.js" | sed 's|use asm||g')
|
||||
};
|
||||
$(cat "${PREFIX}/lib/libsodium.wasm.tmp.js")
|
||||
}).catch(function () {
|
||||
}).catch(function() {
|
||||
_Module.useBackupModule();
|
||||
});
|
||||
EOM
|
||||
|
Loading…
Reference in New Issue
Block a user