[Python-Dev] compiling python2.5 (msys+mingw+wine) - giving

Open forum for end-user questions about Wine. Before asking questions, check out the Wiki as a first step.
Forum Rules
Locked
Martin v. Löwis

[Python-Dev] compiling python2.5 (msys+mingw+wine) - giving

Post by Martin v. Löwis »

sorry, martin - i thought the win32 builds generated python25.lib,
python25.dll
Correct.
and python25.def
No.
so as to fit into the 8.3 filename convention.
No. It generates python25.lib because that's the import library
for python25.dll. It calls it python25.dll because the lib prefix
is atypical for the platform, and also redundant (DLL means
"dynamic link library").

The Python binary installer also includes libpython25.a, for use
with mingw32.

Regards,
Martin
Locked