Python inside C++

Christian Heimes lists at cheimes.de
Tue Apr 14 07:39:52 EDT 2009


Ken Seehart wrote:
> Picky note: The phrase "statically compile pythonxx.dll into my C++
> application" is not quite correct.  A DLL is dynamically linked, not
> statically linked.  All this means is that you ship pythonxx.dll with
> your application along with any other DLLs and pyd files you might
> need.  But don't worry, you can do what you want.

The op could also compile Python and all necessary extensions as a
static lib and link that lib into his application. It's fairly easy with
the VS project files.

Christian




More information about the Python-list mailing list