[Date Prev][Date Next][Thread Prev][Thread Next][Thread Index]
Re: [XaraXtreme-dev] libiconv
- From: Alex Bligh <alex@xxxxxxxxxxx>
- Date: Wed, 26 Apr 2006 16:36:33 +0100
- Subject: Re: [XaraXtreme-dev] libiconv
Phil Martin wrote:
Sounds great in principle but I don't think it will fix the problem for
Mac OS.
So, what exactly is the error message from link (ld)? I saw the list of
undefined symbols, but any sane version of ld also gives a detailed
list of where they were actually used. Do you have that? (perhaps
you have to pass ld some flag).
If not (sigh) try this:
find . -name 'lib*.a' | while read f ; do echo Testing $f ; nm -A $f
2>&1 ; done | egrep 'iconv|localeconv'
Lines with a "U" on are undefined symbols. That should tell you
which file is using it.
Alex