embedding on IRIX

Martin von Loewis loewis at informatik.hu-berlin.de
Wed Nov 8 15:13:33 EST 2000


Mike Morasky <mikem at wetafx.co.nz> writes:

> I'm attempting to embed python2.0 into a program on IRIX 6.5 and am getting
> the following errors:
> 
> ld32: ERROR   33 : Unresolved text symbol "__eprintf" -- 1st referenced by
> /local1/usr/local/lib/libpython2.0.a(longobject.o).

I guess that comes from libgcc.a - did you use gcc to build Python?

> ld32: ERROR   33 : Unresolved text symbol "pthread_detach" -- 1st referenced
> by /local1/usr/local/lib/libpython2.0.a(thread.o).

You probably should link with -lpthread at the end ...

> ld32: ERROR   33 : Unresolved text symbol "dbopen" -- 1st referenced by
> /local1/usr/local/lib/libpython2.0.a(bsddbmodule.o).

... and  with -ldb. If  you don't want  to link in bsddb,  then you'll
need to provide your own config.c.

Hope this helps,
Martin



More information about the Python-list mailing list