Re: [C++-sig] Problem Compiling Boost.Python Example

2012-04-06 Thread Payam Shiva
2012/4/7 Wojciech Mamrak : > Wait, don't give up :) > Tomorrow I will send you a msvc solution of a simple application that > embedds python, so that you can check the compilation, ok? Thank you. I'll be waiting. ___ Cplusplus-sig mailing list Cplusplus-

Re: [C++-sig] Problem Compiling Boost.Python Example

2012-04-06 Thread Wojciech Mamrak
Wait, don't give up :) Tomorrow I will send you a msvc solution of a simple application that embedds python, so that you can check the compilation, ok? W dniu 6 kwietnia 2012 18:03 użytkownik Payam Shiva napisał: > Thank you Adam. I tried what you said, but it doesn't work for me. It > gave an er

Re: [C++-sig] Problem Compiling Boost.Python Example

2012-04-06 Thread Payam Shiva
Thank you Adam. I tried what you said, but it doesn't work for me. It gave an error, among a bunch of others, that it couldn't find python26.lib. I have Python 2.7 installed on my computer, so it makes sense. Maybe the person who compiled the libraries had Python 2.6 installed. Anyway, just out of

Re: [C++-sig] Problem Compiling Boost.Python Example

2012-04-06 Thread Adam Preble
There's a good question: How could one contribute changes to the web documentation? There have been a few things in the past I feel would have been more widely understandable. For me, I remember getting debug symbols was an adventure. The documentation was technically all there, but it didn't ma

Re: [C++-sig] Problem Compiling Boost.Python Example

2012-04-06 Thread Paul Kroitor
We had a similar problem last September. http://mail.python.org/pipermail/cplusplus-sig/2011-September/016142.htm l It's not clear to me if your issue is the same one, a related one, or simply similar. We crea

Re: [C++-sig] Problem Compiling Boost.Python Example

2012-04-06 Thread Adam Preble
For my stuff, under Linker->Input, I explicitly listed my Boost.Python lib and the Python lib. Like so: libboost_python-vc100-mt-gy-1_47.lib python26_d.lib Actual names for yours will vary. By chance are you new to Visual Studio generally? On Fri, Apr 6, 2012 at 8:50 AM, Payam Shiva wrote: >

Re: [C++-sig] Problem Compiling Boost.Python Example

2012-04-06 Thread Payam Shiva
What I am trying to do is the latter (using Boost.Python). Because I'm completely new to this, I am trying to follow the tutorial. Please take a look at this link: http://www.boost.org/doc/libs/1_49_0/libs/python/doc/tutorial/doc/html/python/hello.html If it's possible to write and build C++ parts

Re: [C++-sig] Problem Compiling Boost.Python Example

2012-04-06 Thread Wojciech Mamrak
Hi, I am lost. Do you wan't to build boost::python libraries or an example using them? Bjam is used for the former only. regards W dniu 6 kwietnia 2012 11:14 użytkownik Payam Shiva napisał: > I'm totally new to Boost.Python, so I'm trying to follow the tutorial. > It says to cd to the tutorial

Re: [C++-sig] Problem Compiling Boost.Python Example

2012-04-06 Thread Payam Shiva
I'm totally new to Boost.Python, so I'm trying to follow the tutorial. It says to cd to the tutorial folder and invoke bjam. When I do this, it still gives me the same error message. I tried using VS too. I did the following: 1. I created a new project (W32 Project and I chose DLL output) 2. I add