Christopher Fonnesbeck wrote: > Is there any way to specify static linking to particular libraries when > building installers with distutils or setuptools? I want to be able to > include the shared libraries that I am linking to in my builds. I did > not see any info on this in the docs.
Not really, no. In many cases (e.g., GNU ld), there's simply no way to tell the linker that you prefer static libraries to shared libraries when you are building a shared library like a Python extension. You simply have to make sure that the static libraries are found first. -- Robert Kern [EMAIL PROTECTED] "In the fields of hell where the grass grows high Are the graves of dreams allowed to die." -- Richard Harter _______________________________________________ Distutils-SIG maillist - [email protected] http://mail.python.org/mailman/listinfo/distutils-sig
