I just started using the boost. For my project I need to install boost -1.30.2 But I am getting some issues in the installation. I will tell you the steps I did over here 1. run the build.bat in boost-jam-3.1.10 2.build vcvrs32.bat in ../vc7/bin 3. Change dir to the dir ../boost.1.30.2 4. Then did C:\NonProject\technical\DOC_NET\Boost\boost-1.30.2>bjam "-sTOOLS=vc7" install --------------------------------------------------------------------- skipping Boost.Python library build due to missing or incorrect configuration couldn't find Python.h in "/usr/include" You can configure the location of your python installation by setting: PYTHON_ROOT - currently "/usr" PYTHON_VERSION - The 2-part python Major.Minor version number (e.g. "2.2", NOT "2.2.1") - currently "2.2" The following are automatically configured from PYTHON_ROOT if not otherwise set: PYTHON_LIB_PATH - path to Python library object; currently "/usr/libs" --------------------------------------------------------------------- don't know how to make install ...found 1 target... ...can't find 1 target... Please help me for this
Hi
couldn't find Python.h in "/usr/include"
It sounds like you're trying to build all of the boost libraries, one of which is boost.python and requires python to be installed. The chances are you don't need to use all of the boost libraries and a large number, if not most, do not require a library to be built as they are entirely header file based. You should check to see which libraries you actually want to use and only compile those where necessary. HTH. Regards Paul Paul Grenyer email: paul@paulgrenyer.co.uk web: http://www.paulgrenyer.co.uk There's someone in my head, but it's not me.
"Paul Grenyer"
Hi
couldn't find Python.h in "/usr/include"
It sounds like you're trying to build all of the boost libraries, one of which is boost.python and requires python to be installed.
No, we just skip the build of Boost.Python if Python isn't installed.
The chances are you don't need to use all of the boost libraries and a large number, if not most, do not require a library to be built as they are entirely header file based. You should check to see which libraries you actually want to use and only compile those where necessary.
Maybe that's a good idea, but it has nothing to do with the problem. Please see Rene's post. -- Dave Abrahams Boost Consulting http://www.boost-consulting.com
Sekhara Pillai, Ramya Sobhana wrote:
I just started using the boost.
For my project I need to install boost -1.30.2
But I am getting some issues in the installation.
I will tell you the steps I did over here
1. run the build.bat in boost-jam-3.1.10
2.build vcvrs32.bat in ../vc7/bin
3. Change dir to the dir ../boost.1.30.2
4. Then did
C:\NonProject\technical\DOC_NET\Boost\boost-1.30.2>bjam "-sTOOLS=vc7" install
don't know how to make install
The build+install support was added in 1.31.0
Please help me for this
You'll need to build each library yourself. -- -- Grafik - Don't Assume Anything -- Redshift Software, Inc. - http://redshift-software.com -- rrivera/acm.org - grafik/redshift-software.com - 102708583/icq
participants (4)
-
David Abrahams
-
Paul Grenyer
-
Rene Rivera
-
Sekhara Pillai, Ramya Sobhana