Re: .cpp to .pyd

2008-08-09 Thread Carl Banks
On Aug 9, 7:46 am, [EMAIL PROTECTED] wrote: > On 9 kol, 13:34, [EMAIL PROTECTED] wrote: > > > > > On 9 kol, 01:27, Carl Banks <[EMAIL PROTECTED]> wrote: > > > > On Aug 8, 1:11 pm, [EMAIL PROTECTED] wrote: > > > > > Thanks for quick reply.Maybe I'm crazy but I did what you said and I > > > > stll ge

Re: .cpp to .pyd

2008-08-09 Thread vedrandekovic
On 9 kol, 13:34, [EMAIL PROTECTED] wrote: > On 9 kol, 01:27, Carl Banks <[EMAIL PROTECTED]> wrote: > > > On Aug 8, 1:11 pm, [EMAIL PROTECTED] wrote: > > > > Thanks for quick reply.Maybe I'm crazy but I did what you said and I > > > stll get the same error :(  :(  :( :(.I have boost version 1.34.1 a

Re: .cpp to .pyd

2008-08-09 Thread vedrandekovic
On 9 kol, 01:27, Carl Banks <[EMAIL PROTECTED]> wrote: > On Aug 8, 1:11 pm, [EMAIL PROTECTED] wrote: > > > Thanks for quick reply.Maybe I'm crazy but I did what you said and I > > stll get the same error :(  :(  :( :(.I have boost version 1.34.1 and > > I'm > > running it on Windows XP SP2. > > Whi

Re: .cpp to .pyd

2008-08-08 Thread vedrandekovic
On 7 kol, 21:43, Carl Banks <[EMAIL PROTECTED]> wrote: > On Aug 7, 3:25 am, [EMAIL PROTECTED] wrote: > > > > > Hello, > > > I want to build my C++ (.cpp) script to (.pyd) like this: > > >http://en.wikibooks.org/wiki/Python_Programming/Extending_with_C%2B%2B > > > I have installed "Microsoft Visual

Re: .cpp to .pyd

2008-08-08 Thread Kay Schluehr
On 7 Aug., 21:43, Carl Banks <[EMAIL PROTECTED]> wrote: > On Aug 7, 3:25 am, [EMAIL PROTECTED] wrote: > > > > > Hello, > > > I want to build my C++ (.cpp) script to (.pyd) like this: > > >http://en.wikibooks.org/wiki/Python_Programming/Extending_with_C%2B%2B > > > I have installed "Microsoft Visual

Re: .cpp to .pyd

2008-08-07 Thread Carl Banks
On Aug 7, 3:25 am, [EMAIL PROTECTED] wrote: > Hello, > > I want to build my C++ (.cpp) script to (.pyd) like this: > > http://en.wikibooks.org/wiki/Python_Programming/Extending_with_C%2B%2B > > I have installed "Microsoft Visual studio .NET 2003" and "Boost > Python" and then after I run my setup s

Re: .cpp to .pyd

2008-08-07 Thread vedrandekovic
On 7 kol, 11:37, Ulrich Eckhardt <[EMAIL PROTECTED]> wrote: > [EMAIL PROTECTED] wrote: > > hellomodule.cpp(9) : fatal error C1083: Cannot open include file: > > 'boost/python/module.hpp': No such file or directory > > You need to tell it where to find the Boost includes. I suggest you first > try t

Re: .cpp to .pyd

2008-08-07 Thread Kay Schluehr
It doesn't look like a VS issue since you've started the setup.py script that calls the command line compiler. So I'd expect it behaves not different from other command line tools and you might have to add the boost path directly to the command-line options. -- http://mail.python.org/mailman/listin

Re: .cpp to .pyd

2008-08-07 Thread Ulrich Eckhardt
[EMAIL PROTECTED] wrote: > hellomodule.cpp(9) : fatal error C1083: Cannot open include file: > 'boost/python/module.hpp': No such file or directory You need to tell it where to find the Boost includes. I suggest you first try to get some header-only Boost library going as example, if you have that

Re: .cpp to .pyd

2008-08-07 Thread vedrandekovic
On 7 kol, 09:48, "Matthieu Brucher" <[EMAIL PROTECTED]> wrote: > > I think that my MS visual studio  cannot find "boost python", if > > that's the problem then can you tell me how can I solve it. > > This is very begginer question,but I can't find answer nowhere, and I > > don't have any expirience

Re: .cpp to .pyd

2008-08-07 Thread Matthieu Brucher
> I think that my MS visual studio cannot find "boost python", if > that's the problem then can you tell me how can I solve it. > This is very begginer question,but I can't find answer nowhere, and I > don't have any expirience with Microsoft products. Hi, Put Boost in your include path (options

.cpp to .pyd

2008-08-07 Thread vedrandekovic
Hello, I want to build my C++ (.cpp) script to (.pyd) like this: http://en.wikibooks.org/wiki/Python_Programming/Extending_with_C%2B%2B I have installed "Microsoft Visual studio .NET 2003" and "Boost Python" and then after I run my setup script: python setup.py build I get this error: runni