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
However, doing the same with the latest Node.js (v15.12.0) works well (assuming the files from above are still in place):
$ node -p "process.arch + ' ' + process.platform + ' ' + process.version"
arm64 darwin v15.12.0
$ node index.js
(node:32587) Warning: Accessing non-existent property 'abort' of module exports inside circular dependency
(Use `node --trace-warnings ...` to show where the warning was created)
$ node --trace-warnings index.js
(node:32591) Warning: Accessing non-existent property 'abort' of module exports inside circular dependency
at emitCircularRequireWarning (node:internal/modules/cjs/loader:698:11)
at Object.get (node:internal/modules/cjs/loader:712:5)
at asmFunc (/Users/[REDACTED]/dev/expt/bbs-expt/node_modules/@mattrglobal/bbs-signatures/lib/wasm_asm.js:95:18)
at Object.<anonymous> (/Users/[REDACTED]/dev/expt/bbs-expt/node_modules/@mattrglobal/bbs-signatures/lib/wasm_asm.js:184429:18)
at Module._compile (node:internal/modules/cjs/loader:1092:14)
at Object.Module._extensions..js (node:internal/modules/cjs/loader:1121:10)
at Module.load (node:internal/modules/cjs/loader:972:32)
at Function.Module._load (node:internal/modules/cjs/loader:813:14)
at Module.require (node:internal/modules/cjs/loader:996:19)
at require (node:internal/modules/cjs/helpers:92:18)
Any ideas, if this could be fixed for Node v14?
Also what about the non-existing property issue?
The text was updated successfully, but these errors were encountered:
tsabolov
changed the title
Allocation failed - process out of memory on Apple Silicon (aka M1)
"Allocation failed - process out of memory" on Apple Silicon (aka M1)
Mar 23, 2021
@tplooker I have done a simple test using the build, and it works. We still need to check on the real scenarios, but I guess the problem is solved now. Thank you for your job!
I am running the library on an Apple Silicon (aka M1) MacBookPro and receive the subject error.
Steps to reproduce (a series of commands in shell):
This results in node process crash with the following output:
However, doing the same with the latest Node.js (v15.12.0) works well (assuming the files from above are still in place):
Any ideas, if this could be fixed for Node v14?
Also what about the non-existing property issue?
The text was updated successfully, but these errors were encountered: