On Tue, 23 Jun 2009 11:12:45 -0600
Kenneth Clark <[email protected]> wrote:

| I am trying to run a custom program, GUMBO, which uses ImageMagick  
| libraries for the GUI. I am using Mac OS X 10.5.7 on my MacBook Pro,  
| but I have encountered difficulties getting the program to startup. I  
| downloaded, compiled, and installed ImageMagick version 6.5.3, but  
| GUMBO still fails to run. I get the following error message when I try  
| to run GUMBO:
| 
| 
| dyld: Library not loaded: /usr/local/lib/libMagick.10.dylib
|    Referenced from: /Users/kenclark/Desktop/GUMBO/simsys/MacOSX-x86/ 
| bin/gumbo.exe
|    Reason: image not found
| /Users/kenclark/Desktop/GUMBO/simsys/bin/gumbo: line 257: 10750 Trace/ 
| BPT trap          ${full_path_to_exe} ${configuration} ${options}
| 
| 
| I have googled "libMagick.10.dylib", "10750 Trace/BPT trap", and  
| "dyld" Library not loaded:" and spent many hours looking through the  
| hits, but they didn't appear to help. I also looked through the  
| ImageMagick
| and Apple forums, but I couldn't find the answer.
| 
| When I look in the directory /usr/local/lib, the library "libMagick. 
| 10.dylib" is not found. After I installed version 6.5.3 of ImageMagick  
| this library was still not loaded. I have searched the internet to  
| download the library but have been as of yet unsuccessful.
| 
| Any suggestions on how to resolve this issue? Thanks for your  
| consideration. 
|

It means the executable could not find a library it needs.

You can see what libraries it needs using
   ldd  /path/to/the/executable

which will show you which library.

then on MacOSX you can use DYLD_LIBRARY_PATH to add more directories
where exectables can look for its libraries.




  Anthony Thyssen ( System Programmer )    <[email protected]>
 -----------------------------------------------------------------------------
  Light thinks it travels faster than anything, but it is wrong.
  No matter how fast light travels, it finds the darkness always got
  there first, and it is waiting for it.    -- Terry Pratchett, "Reaper"
 -----------------------------------------------------------------------------
     Anthony's Home is his Castle     http://www.cit.gu.edu.au/~anthony/
_______________________________________________
Magick-users mailing list
[email protected]
http://studio.imagemagick.org/mailman/listinfo/magick-users

Reply via email to