Daniil Ryzhkov
Daniil Ryzhkov
@j-horner-c4x The problem here is that packaging must find out somehow which shared libraries have to be in the package. And in order to do that it runs `ldd` on...
That's true, I've seen that section. Anyway this does not resolve @j-horner-c4x problem because whether with libc or not, packager must know about other eventual dependencies that it must package....
> There are plenty of users who want to run existing software (that happens to have many dependencies) on Lambda. Ah, that totally makes sense, I see. So, as a...
I've probably explained badly what I mean. The packager calls `ldd` against exe to get the list of libraries. If it would call not the `ldd` of the build machine,...
> To be honest though it might be just be best to build on an AL2 ARM EC2 instance. That would be for sure the easiest way to build, that...
@ChristianUlbrich While it might be convenient to use Docker for targeting various platforms, it has a great performance penalty when cross-compiling between archs. You basically run all the thing through...
I see. So I guess we'll just wait for the version `4.0`. Btw, would be also really nice to have an option to specify encoding in this constructor.
I think providing an optional `Encoding` parameter in the constructor would already cover most use cases. Taking the inspiration from the `File` interface of the flutter itself, which looks like...