Standalone Win32 wxPython apps?

Bengt Richter bokr at oz.net
Sun Mar 10 19:14:39 EST 2002


On Sun, 10 Mar 2002 22:59:33 +0100, Wolfgang Strobl <ws at mystrobl.de> wrote:

>Sun, 10 Mar 2002 20:05:24 GMT, grante at visi.com (Grant Edwards):
>
>>I would think that for an isolated app, .so's would slow down
>>load times.  With a statically linked program all you do is a
>>single memmap() call (well, ignoring a few details).  With
>>.so's you've actually got to resolve all of the symbols and do
>>the linking step (not required for statically linked images).
>
>Windows DLLs are already linked. 
>
Although it is possible totally to defer loading particular dll's.
E.g., consider what the VC++ debugger itself does, which doesn't know
what you want to do until you tell it.

You can set up automatic default loading or program controlled loading
in apps too, AFAIK.

Regards,
Bengt Richter




More information about the Python-list mailing list