I'm trying to use Magick.Net on OS X, and I've been following this guide to do so. It's a guide for Linux, but OS X is Unix so I assume that it should work the same.
I think I'm close to making it work but I've got a problem with the dependencies, and I want to see the dependencies of a .so
file.
So I Googled how to look a the dependencies of a .so
file on Linux, and stumbled upon otool -L
.
This tool looks at the depdencies and also sees if it can find the dependencies it needs, which is what I want because it makes everything easier.
But when I run otool -L Magick.NET-Q8-x64.dll.so
, I get the error message Not a Mach-O filetype
So what do I do now? Is there an alternative I can use or am I using the program wrong?