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
This crate builds a dynamic version of libsixel at compile time and links against it. Then, when you run the executable, that library is not found, and relies on you having a dynamic library of libsixel installed on the operating system.
Please change it so that if libsixel is installed, you use the system installed version, and otherwise you compile and statically link against your own compiled version of libsixel. This is how many popular sys crates work in the Rust ecosystem, for example libgit2-sys.
The text was updated successfully, but these errors were encountered:
This crate builds a dynamic version of libsixel at compile time and links against it. Then, when you run the executable, that library is not found, and relies on you having a dynamic library of libsixel installed on the operating system.
Please change it so that if libsixel is installed, you use the system installed version, and otherwise you compile and statically link against your own compiled version of libsixel. This is how many popular sys crates work in the Rust ecosystem, for example libgit2-sys.
The text was updated successfully, but these errors were encountered: