Boost logo

Boost :

From: David Abrahams (david.abrahams_at_[hidden])
Date: 2001-10-24 08:31:17


Hugo,

That feature is compiled into the new Jambase file in the Jam sources. If
you invoke Jam with BOOST_ROOT set, it should set BOOST_BUILD_PATH
automatically. The very first code in Jambase reads:

if $(BOOST_ROOT)
{
    BOOST_BUILD_PATH ?= $(BOOST_ROOT)/tools/build ;
}

if $(BOOST_BUILD_PATH)
{
    JAMBASE ?= boost-build.jam ;
}

if $(JAMBASE)
{
    JAMBASE = $(JAMBASE:G=jam-module) ; # puts the Jambase target in a
different
                                        # namespace from other targets so
that
                                        # it doesn't collide.
    SEARCH on $(JAMBASE) = $(JAMBASE_PATH) $(BOOST_BUILD_PATH) ;
    include $(JAMBASE) ;
}
else
{

   ...
===================================================
  David Abrahams, C++ library designer for hire
 resume: http://users.rcn.com/abrahams/resume.html

        C++ Booster (http://www.boost.org)
          email: david.abrahams_at_[hidden]
===================================================

----- Original Message -----
From: "Hugo Duncan" <hugo.duncan_at_[hidden]>
To: <boost_at_[hidden]>
Sent: Wednesday, October 24, 2001 6:01 AM
Subject: [boost] Re: Build System Update

> Dave,
>
> BOOST_BUILD_PATH does not seem to get set even though BOOST_ROOT is
> set.
>
> Would it be possible for allyourbase.jam to set BOOST_BUILD_PATH if
> this has not already been set (BOOST_BUILD_PATH is used to locate new-
> split.jam).
>
> BOOST_BUILD_PATH ?= $(BOOST_ROOT)/tools/build ;
>
> Thanks,
>
> Hugo
>
> --- In boost_at_y..., "David Abrahams" <david.abrahams_at_r...> wrote:
> > I have posted an update to the build system at:
>
>
>
> Info: http://www.boost.org Unsubscribe:
<mailto:boost-unsubscribe_at_[hidden]>
>
> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>
>


Boost list run by bdawes at acm.org, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk