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
when installed ImageMagick and successfully build it on my windows pc, the final Rust executable worked anywhere
but then transfer the final executable to another PC, it does not work:
when not DLL is located with the final executable, nothing prints when invoked
when copying the ImageMagick DLL to the same dir of the final executable, it complains failed to read image
then I install ImageMagick on the new PC, and everything works
when how should I distribute the final executable?
The text was updated successfully, but these errors were encountered:
My Windows developer experience is more than 20 years out of date, so I can't speak to the best approach for producing a static binary, or if that is even possible. But that is the basic problem: there is an executable that is trying to find the necessary libraries, and that includes ImageMagick itself. Hence, installing ImageMagick resolves the issue, but expecting a user to do that is a bit much, so I admit this is problematic. However, I don't have any idea of a good solution.
when installed ImageMagick and successfully build it on my windows pc, the final Rust executable worked anywhere
but then transfer the final executable to another PC, it does not work:
failed to read image
when how should I distribute the final executable?
The text was updated successfully, but these errors were encountered: