Re: Python inside C++

2009-04-14 Thread Christian Heimes
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 migh

Re: Python inside C++

2009-04-14 Thread Ken Seehart
AJ Mayorga wrote: Hello all, I am looking for a way to statically compile pythonxx.dll into my C++ application, so that I can use It as an internal scripting language and either run the native python code or take an ELF from py2exe/pyinstaller and run that. The machines that will have

Re: Python inside C++

2009-04-13 Thread Aaron Brady
On Apr 13, 8:41 am, Kushal Kumaran wrote: > On Wed, Apr 15, 2009 at 8:56 AM, AJ Mayorga wrote: > > Hello all, > > > I am looking for a way  to statically compile pythonxx.dll into my C++ > > application, so that I can use It as an internal scripting language and > > either run the native python c

Re: Python inside C++

2009-04-13 Thread Kushal Kumaran
On Wed, Apr 15, 2009 at 8:56 AM, AJ Mayorga wrote: > Hello all, > > > > I am looking for a way  to statically compile pythonxx.dll into my C++ > application, so that I can use It as an internal scripting language and > either run the native python code or take an ELF from py2exe/pyinstaller and >