alice

Results 48 comments of alice

this happens because the `argon2.node` plugin is precompiled. you cannot expect to run it on a non-glibc system (where it was originally compiled) and work. that it happened to sometimes...

> there is nothing alpine (or musl) can do to fix this. the reason it sometimes happens to work is because musl has some degree of compatibility with glibc (ABI-wise),...

> The precompiled binary will be linked against musl if you are running Alpine. in that case it would work fine, indeed this specific way of installing it would be...

yeah, can confirm changing `FROM node:${NODE_VERSION}` to `FROM node:${NODE_VERSION}-alpine` alone works as expected

> Should they be defined everywhere? unless there's something you're gaining by selectively defining them (you would know; generally it's to selectively expose a different standard of a function in...

ah, also goes for `common/Linux/LnxHostSys.cpp` for ftruncate64/off64_t, and `common/FileSystem.cpp` a patch for the code specifically that works is: ```diff diff --git a/common/FileSystem.cpp b/common/FileSystem.cpp index a700e68..c8327b9 100644 --- a/common/FileSystem.cpp +++ b/common/FileSystem.cpp...

hmm, on 64-bit only builds it might not need to be defined, yeah. off_t and the like default to 64.

> Unfortunately I can't reproduce it locally. to be more exact, are you sure you're using electron24, and then also perhaps on wayland (--ozone-platform-hint=wayland, not sure if it's relevant) if...

yeah, sounds more related to electron in this environment then, unless there is a very good other reason the ready-to-show event is never emitted. thanks for checking!