When trying to use convert(1), I get the following error:

dyld: Library not loaded: /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libclparser.dylib
Referenced from: /usr/local/bin/convert
Reason: image not found
Trace/BPT trap: 5

Any idea how I could fix it ?

link|improve this question

feedback

4 Answers

up vote 32 down vote accepted

I was getting this error as well–with a homebrew install of ImageMagick. Along the same lines as Pascal, I fixed it with

  1. Install XCode 4.1 (from the App Store)
  2. In Xcode, go to Xcode > Preferences... > Downloads tab > click Install next to Command Line Tools
  3. Uninstall ImageMagick with brew uninstall imagemagick
  4. Update homebrew with brew update
  5. Install latest homebrew with brew install imagemagick
  6. Run brew doctor and delete any of the *.la and *.a files listed if step 4 fails on make install
link|improve this answer
Sorry, forgot I had this question on SO. This is exactly what I did. thank you. – Pier-Olivier Thibault Jul 26 '11 at 14:33
perfect, same problem, thanks – Paul Kaplan Aug 1 '11 at 18:25
Remember that installing XCode from AppStore doesn't really install it, it will leave you an "Install Xcode" icon installer in your App folder. Click on it. – fguillen Dec 26 '11 at 14:57
feedback

I got the same error and what solved the problem for me was:

  1. Install the latest XCode version from the Mac Appstore
  2. Install ImageMagick using Macports (sudo port install imagemagick)

Both steps took a while, but in the end ImageMagick worked fine again.

link|improve this answer
feedback

I installed xcode but had some issue with macports. Bummer!

I copied the libclparser.dylib file over from an old backup of 10.6, changed the permissions to match the other files in that folder and it worked!

Also see here: http://stackoverflow.com/questions/6674666/installing-imagemagick-leads-to-weird-error-involving-opencl

Edit:

I found this, which may be useful: http://cactuslab.com/imagemagick/
Also, the file is here: http://www.workdreamer.com/uploads/libclparser.dylib

link|improve this answer
I didn't want to copy a dylib file from an older version of OSX for obvious reason. I ended up reinstalling imagemagick with homebrew like @callmeed said – Pier-Olivier Thibault Jul 26 '11 at 14:32
Worked for me too. Thanks! – anka Oct 17 '11 at 7:54
I bought a new laptop and I've got this problem again! – Rimian Jan 4 at 8:47
Oh, and again... How come I keep ending up here? – Rimian Feb 14 at 2:40
feedback

Reinstalling it even with brew instead of macports didn't work for me. Copying it did.

link|improve this answer
your library was most probably still linked. – Pier-Olivier Thibault Oct 3 '11 at 16:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.