[PythonCE] Python23.lib?

2005-06-27 Thread Salvatore Russo
Hello everyone,   I am working on porting blender (www.blender3d.org) for Pocketpc. Blender is written in C/C++ and is using Python. I downloaded “python-2.3.4-arm-HPC2000.zip”, add in my includes all Python23 includes (with Python.h, etc…) but now, EVC4 is complaining because it is looking for a

Re: [PythonCE] Python23.lib?

2005-06-27 Thread Brad Clements
On 27 Jun 2005 at 9:49, Salvatore Russo wrote: find this library. I have a “Python23.dll” but no .lib. Can't you generate a .lib file from a DLL using one of the command-line tools? (Like.. lib.exe ??) -- Brad Clements,[EMAIL PROTECTED](315)268-1000 http://www.murkworks.

Re: [PythonCE] Python23.lib?

2005-06-27 Thread Salvatore Russo
Hello Brad,   What I don't understand, is why pyconfig.h (one of the file in all header to use python with C++) want to import this python23.lib. Here is the code:   /* For an MSVC DLL, we can nominate the .lib files used by extensions */#ifdef MS_COREDLL# ifndef Py_BUILD_CORE /* not building the

Re: [PythonCE] Python23.lib?

2005-06-27 Thread James Salter
Hi I assume it's not included because most people only want to run python scripts (which requires the DLL) - not embed python in C, which is generally done using static linking (or at least that's how I've done it in the past, and it looks like blender did that too.) As far as I know only a handf

Re: [PythonCE] Python23.lib?

2005-06-27 Thread Brad Clements
On 27 Jun 2005 at 16:02, Salvatore Russo wrote: > > What I don't understand, is why pyconfig.h (one of the file in all header to > use python with C++) want to import this python23.lib. Here is the code: > #pragma comment(lib,"python23.lib") This pragma automatically tells windows compiler

Re: [PythonCE] Python23.lib?

2005-06-27 Thread Salvatore Russo
Thanks for your help!!!   I will try to generate a lib with the command: "lib python23.dll "   Thanks again, Salvatore     > On 27 Jun 2005 at 16:02, Salvatore Russo wrote: > > > > > What I don't understand, is why pyconfig.h (one of the file in all header to use python with C++) want to import