Lines Matching +full:unix +full:- +full:like
4 .. _building-on-windows:
13 Windows programmer learning to build Python extensions and the Unix programmer
14 interested in producing software which can be successfully built on both Unix
31 .. _win-cookbook:
37 are on Unix: use the :mod:`distutils` package to control the build process, or
40 is available in :ref:`distutils-index`. If you find you really need to do
45 .. _dynamic-linking:
47 Differences Between Unix and Windows
53 Unix and Windows use completely different paradigms for run-time loading of
57 In Unix, a shared object (:file:`.so`) file contains code to be used by the
64 In Windows, a dynamic-link library (:file:`.dll`) file has no dangling
70 In Unix, there is only one type of library file (:file:`.a`) which contains code
77 library (both called :file:`.lib`). A static library is like a Unix :file:`.a`
86 Suppose you are building two dynamic-load modules, B and C, which should share
87 another block of code A. On Unix, you would *not* pass :file:`A.a` to the
94 In Windows, using an import library is sort of like using ``import spam``; it
95 gives you access to spam's names, but does not create a separate copy. On Unix,
96 linking with a library is more like ``from spam import *``; it does create a
100 .. _win-dlls: