Mark J. Reed wrote:
> dyld: Library not loaded: /libgcc_s.1.dylib
> Referenced from: /usr/local/lib/libssp.0.dylib
> Reason: image not found
> Trace/BPT trap
>
> fink 0.28.7 on 10.5.6... any thoughts?
>
>
You've linked to a non-Fink library that seems to have encoded a bad
path to libgcc_s.1.dylib in it. It looks like you've been building with
a third-party compiler package installed and that's producing interference.
I'm not seeing any dependencies on gcc42 or gcc43, which are what
provide libssp.0.dylib in Fink, in gnucash's dependency tree. That
means you're going to have to hunt through your system and find whatever
has linked to /usr/local/lib/libssp.0.dylib, move /usr/local out of the
way, and rebuild the packages in question.
The following script should rummage through your /sw/lib and /sw/bin and
look for any libraries that link to
/usr/local/lib/libssp.0.dylib
and display whatever package contains them.
for lfile in `find /sw/bin /sw/lib | xargs file -h | grep Mach-O | cut
-d: -f1 ` ;
do (otool -L $lfile | grep /usr/local/lib/libssp.0.dylib >/dev/null)
&& dpkg -S $lfile | cut -d: -f1 ;
done
--
Alexander Hansen
Fink User Liaison
------------------------------------------------------------------------------
Open Source Business Conference (OSBC), March 24-25, 2009, San Francisco, CA
-OSBC tackles the biggest issue in open source: Open Sourcing the Enterprise
-Strategies to boost innovation and cut costs with open source participation
-Receive a $600 discount off the registration fee with the source code: SFAD
http://p.sf.net/sfu/XcvMzF8H
_______________________________________________
Fink-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/fink-users