I try to execute my application on another Mac than my development machine and I have the following error:
Dyld Error Message:
Library not loaded: /System/Library/Framework/Versions/A/Jackmp
Referenced from: /Volumes/FFmpegTest_v1.0.1/FFmpegTest.app/Contents/Frameworks/libavformat.56.dylib
It seems that this Jackmp library is a new dependency (not present in earlier libavformat dependencies) as I can check with:
otool -L /usr/local/lib/libavformat.dylib
Any idea?
otool -L /Volumes/FFmpegTest_v1.0.1/FFmpegTest.app/Contents/MacOS/YourExecutable
? – Flemings