Problem with Binary on Mac OS 10.6

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
kudryk

Problem with Binary on Mac OS 10.6

Post by kudryk »

I've just attempted to install the binary for Mac OSX (Snow Leopard) according to the instructions provided. When I verify that it's working by trying out "identify logo.jpg", I get the following error:

dyld: unknown required load command 0x80000022
Trace/BPT trap

Any suggestions please?
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: Problem with Binary on Mac OS 10.6

Post by fmw42 »

did you expert DYLD_LIBRARY_PATH

Here is what I changed in my .profile file when I was using IM binaries with OSX Tiger.

##
# DELUXE-USR-LOCAL-BIN-INSERT
# (do not remove this comment)
##
echo $PATH | grep -q -s "/usr/local/bin"
if [ $? -eq 1 ] ; then
PATH=$PATH:/usr/local/bin
export PATH
fi
export MAGICK_HOME="/Users/fred/Applications/ImageMagick-6.3.7"
export PATH="${PATH}:$MAGICK_HOME/bin"
export PATH="${PATH}:/Users/fred/Applications/ImageMagick-Scripts/bin"
export DYLD_LIBRARY_PATH="${DYLD_LIBRARY_PATH}:$MAGICK_HOME/lib"
export DISPLAY=:0


Perhaps my notes will help. See viewtopic.php?f=1&t=10442
Post Reply