distutils problem with interdependent modules

Martin von Loewis loewis at informatik.hu-berlin.de
Fri Dec 21 17:34:56 EST 2001


"Daniel Wexler" <wex at flarg.com> writes:

> C1, C2  - two pure C libraries (i.e.. not Python extensions)
> P1, P2 - two C extension modules
> 
> C2 requires functions in C1
> P1 requires functions in C2
> P2 requires functions in P1 and C1

Please don't do that. On Unix, P2 cannot see any symbols from
P1. Never mis-use an extension module as a shared library.

Regards,
Martin




More information about the Python-list mailing list