[EMAIL PROTECTED] wrote:
> I have C Extension classes distributed across several modules with
> non-trivial interdependancies. I guess you are saying I should have
> these in backend libraries and then put the module specific functions
> in the module itself. It's going to be tricky because I am us
Martin v. Löwis wrote:
> Simon Burton wrote:
> > I'm having some trouble linking one extension module to another because
> > the linker expects a "lib" prefix and my python modules cannot have
> > this prefix.
>
> This is a Good Thing (tm) :-) Don't link extension modules to each
> other; this is
Simon Burton wrote:
> I'm having some trouble linking one extension module to another because
> the linker expects a "lib" prefix and my python modules cannot have
> this prefix.
This is a Good Thing (tm) :-) Don't link extension modules to each
other; this is really asking for trouble. Instead, c
Hi,
I'm having some trouble linking one extension module to another because
the linker expects a "lib" prefix and my python modules cannot have
this prefix.
I found two ways of doing it on a linux box (either symlink or create a
dummy .so that links to extension module) but I can get neither of