Page 1 of 1
Problem with Binary on Mac OS 10.6
Posted: 2010-01-27T19:59:06-07:00
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?
Re: Problem with Binary on Mac OS 10.6
Posted: 2010-03-15T10:06:16-07:00
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