19 Apr
2006
19 Apr
'06
5:24 p.m.
On Wed, Apr 19, 2006 at 02:50:18PM +0200, jiho wrote:
You're also getting an 'undefined symbols' error, but it's not clear what symbols are undefined. A common cause for that is that the link order of libraries isn't quite right, or that you're linking against a newer or older version of the lib, which lacks the required symbols.
I thought that the undefined symbols came from the fact that, as two libs were present with the same symbol, none of them was used and hence all other symbols of the lib were unknown. could it be that?
Yeah that could be. I don't think I've seen that with gcc, but if the ld is something non-standard, this behavior is certainly possible.
Bryce