Linux why not fully dynamic?

Robin Becker robin at jessikat.demon.co.uk
Sat Aug 7 08:46:26 EDT 1999


In article <37AB003C.28D9 at mailserver.hursley.ibm.com>, Paul Duffin
<pduffin at mailserver.hursley.ibm.com> writes
...
>> 
>> (This is a Unix question; on Mac and Windows, it is a shared library.)
>> 
>> It's just a nightmare to get this to work on all different
>> platforms. Shared library portability is a pain. And yes, I know about
>> GNU libtool -- but it requires me to use its conventions for filenames
>> etc, and it would require a complete and utter rewrite of all the
>> makefile and config tools I'm currently using.
...
>> In practice, few applications embed Python -- it's much more common to
>> have Python extensions, which already are shared libraries. Also,
>> serious embedders often want total control over which Python version
>> and configuration they use so they wouldn't want to use a standard
>> shared library anyway. So while the motivation of saving space when
>> lots of apps embed Python is nice in theory, I doubt that it will save
>> much in practice.  (Hence the low priority I give to making a shared
>> library.)
>> -----------------------------------------------------------------------
The windows version uses DLLs and there is a mechanism already for
extensions to know what version of python they're built for. Surely most
unices are just as good as if not better than win32 when it comes to
preventing DLL hell.

My view on python is that much of the success in win32 comes from the
great work done by Mark Hammond & buddies which allows python to be used
easily as a com object generator/interfacer etc etc. Some of the
problems come from the fact that python15.dll doesn't work exactly the
same as expected ie it doesn't know where python.exe is etc. PythonCOM
makes use of DLL's for inproc servers.

Can CORBA and the like make use of python in the same kind of way and
would this be embedding?
>
>AFAIK this is a quote from GvR which was given a long time ago, I would
>be interested to know if he has changed his mind on this.
>
>Whenever anyone asks this question they "eventually" get pointed to this
>quote. I think that there have been enough people asking about this to
>invalidate the primary reason for this being given such a low profile.
>
>Considering the fact that Python already has support for dynamic
>extensions and that it uses backlinking which does not care whether
>the symbols are in a library or an executable it is not as difficult
>as Guido thinks.
>
>Unfortunately because of this statement people are reluctant to do
>the necessary work to support this because they do not feel that it
>will be added into the code. Instead they workaround it or do enough
>for themselves and so the problem never gets fixed.
>
Paul was a major force behind the stubs mechanism in Tcl (I believe
because of failings in AIX). The stubs mechanism allows versions to be
more independent and overcomes deficiencies in inter extension linking.
There is certainly less of this in python as extensions tend to
implement specific python objects and normally don't refer across
directly to the internals of other extensions.

However, I see no reason why python shouldn't be split into smaller bits
if only to reduce the footprint. The parser module is unwanted for many
applications and certainly under Linux the executable size came down by
40% when the *shared* Setup option was used.
-- 
Robin Becker




More information about the Python-list mailing list