Re: linking one extension module to another (Mac OSX)

2005-11-22 Thread pianomaestro
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 really

Re: linking one extension module to another (Mac OSX)

2005-11-22 Thread Martin v. Löwis
[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 using

linking one extension module to another (Mac OSX)

2005-11-21 Thread Simon Burton
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

Re: linking one extension module to another (Mac OSX)

2005-11-21 Thread Martin v. Löwis
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, come