Originally reported by @XaaRii in #900
erlpack was not functioning properly on Raspberry PI with ARMv7 architecture. It will throw corrupted double-linked list and sometimes segfault. So with that, all the optional dependencies is actually working properly except erlpack.
I don't know the exact reason why that is happening, erlpack functions correctly with this code:
const erlpack = require("erlpack");
const dataPacked = erlpack.pack("Hello, World!");
console.log(erlpack.unpack(dataPacked));
But with discord.js code, it will throw corrupted-double-linked list and sometimes segfault. I'll try to debug what the exact reason that causes this issue
The current workaround is: Uninstall erlpack using $ npm remove erlpack and you're good to go
Originally posted by @Hazmi35 in #900 (comment)
Originally reported by @XaaRii in #900
erlpack was not functioning properly on Raspberry PI with ARMv7 architecture. It will throw
corrupted double-linked listand sometimes segfault. So with that, all the optional dependencies is actually working properly except erlpack.I don't know the exact reason why that is happening, erlpack functions correctly with this code:
But with discord.js code, it will throw
corrupted-double-linked listand sometimes segfault. I'll try to debug what the exact reason that causes this issueThe current workaround is: Uninstall erlpack using
$ npm remove erlpackand you're good to goOriginally posted by @Hazmi35 in #900 (comment)