Hello I am stuck, here is my info, thanks much boost install steps for i686-pc-Linux debian-GNU/Linux 2.6.8 # ls /var/boost/ boost-jam-3.1.10-1-linuxx86.tgz boost_1_31_0.tar.bz2 debian:/var/boost# tar -xvzf boost-jam-3.1.10-1-linuxx86.tgz debian:/var/boost# tar -jxf boost_1_31_0.tar.bz2 debian:/var/boost/boost-jam-3.1.10-1-linuxx86# cp bjam /usr/local/bin/ debian:/var/boost/boost-jam-3.1.10-1-linuxx86# which bjam /usr/local/bin/bjam debian:~# which gcc /usr/bin/gcc debian:~# bjam -sGCC_ROOT_DIRECTORY="" Unable to load Boost.Build: could not find "boost-build.jam" --------------------------------------------------------------- Attempted search from /root up to the root and in these directories from BOOST_BUILD_PATH and BOOST_ROOT: /usr/share/boost-build. Please consult the documentation at 'http://www.boost.org'. debian:~# __________________________________ Do you Yahoo!? Yahoo! Mail - 50x more storage than other providers! http://promotions.yahoo.com/new_mail
You do need to define BOOST_ROOT and BOOST_BUILD_PATH. BOOST_ROOT should point to the top of the boost directory tree. This is the directory that has boost and libs subdirectories. BOOST_BUILD_PATH should be "$BOOST_ROOT/tools/build/v1" Don't forget to export your environment variable. Fred J. wrote:
Hello I am stuck, here is my info, thanks much
boost install steps for i686-pc-Linux debian-GNU/Linux 2.6.8
# ls /var/boost/ boost-jam-3.1.10-1-linuxx86.tgz boost_1_31_0.tar.bz2
debian:/var/boost# tar -xvzf boost-jam-3.1.10-1-linuxx86.tgz debian:/var/boost# tar -jxf boost_1_31_0.tar.bz2
debian:/var/boost/boost-jam-3.1.10-1-linuxx86# cp bjam /usr/local/bin/ debian:/var/boost/boost-jam-3.1.10-1-linuxx86# which bjam /usr/local/bin/bjam
debian:~# which gcc /usr/bin/gcc
debian:~# bjam -sGCC_ROOT_DIRECTORY="" Unable to load Boost.Build: could not find "boost-build.jam" --------------------------------------------------------------- Attempted search from /root up to the root and in these directories from BOOST_BUILD_PATH and BOOST_ROOT: /usr/share/boost-build. Please consult the documentation at 'http://www.boost.org'. debian:~#
__________________________________ Do you Yahoo!? Yahoo! Mail - 50x more storage than other providers! http://promotions.yahoo.com/new_mail
Jeffrey Holle wrote:
You do need to define BOOST_ROOT and BOOST_BUILD_PATH. BOOST_ROOT should point to the top of the boost directory tree. This is the directory that has boost and libs subdirectories. BOOST_BUILD_PATH should be "$BOOST_ROOT/tools/build/v1"
Don't forget to export your environment variable.
Or just: cd /var/boost/boost_1_31_0 bjam -sTOOLS=gcc install As per: http:://www.boost.org/more/getting_started.html -- -- Grafik - Don't Assume Anything -- Redshift Software, Inc. - http://redshift-software.com -- rrivera/acm.org - grafik/redshift-software.com - 102708583/icq
Only until one wants to use bjam outside of the boost tree! Rene Rivera wrote:
Jeffrey Holle wrote:
You do need to define BOOST_ROOT and BOOST_BUILD_PATH. BOOST_ROOT should point to the top of the boost directory tree. This is the directory that has boost and libs subdirectories. BOOST_BUILD_PATH should be "$BOOST_ROOT/tools/build/v1"
Don't forget to export your environment variable.
Or just:
cd /var/boost/boost_1_31_0 bjam -sTOOLS=gcc install
As per: http:://www.boost.org/more/getting_started.html
On Mon, Aug 30, 2004 at 05:03:30PM -0700, Fred J. wrote:
Hello I am stuck, here is my info, thanks much
boost install steps for i686-pc-Linux debian-GNU/Linux 2.6.8
For debian, you can install boost using this simple command apt-get install libboost-dev (include libboost-python-dev, libboost-regex-dev, etc if you require other compiled libs) If you're using "stable" or "testing" and want boost 1.31, it's more complicated but you can build from the debian sources. Put the following line in /etc/apt/sources.list deb-src http://ftp.debian.org/debian unstable main then run apt-get update fakeroot apt-get source --build boost -Steve
participants (4)
-
Fred J.
-
Jeffrey Holle
-
Rene Rivera
-
Steve M. Robbins