msrd0 / rlottie-rs

Rust bindings to rlottie and file conversion library and tools
MIT License
17 stars 4 forks source link

Cannot install binaries on OSX Sonoma #50

Open KClough opened 9 months ago

KClough commented 9 months ago

When I run cargo install lottieconv --features="clap gif"

I'm getting this output/error (gist link because very long).

msrd0 commented 9 months ago

Hm that sounds like some problem with finding some C++ library stuff. Pretty much impossible for me to debug without any way to reproduce the problem which starts with me not using non-free operating systems.

To debug the problem, I'd check how you build rlottie and if you can link it into easy C programs without the linker choking. At least on linux I use pkg-config, and I'd expect that to happen on all platforms as I don't think I'm checking the platform anywhere, so if you need any additional libraries to get linked in, you should specify them in the rlottie.pc file.

Also small tip, you can embed very long outputs into markdown using <details><summary>Click to expand</summary>Very .... long .... code ....</details>, but gist works too of course.