Dear All:

Followed Volodya's suggestion and re-commented previously exposed lines in user-config.jam file, leaving only 'using gcc ;' exposed.  This indeed, caused bjam to do a good deal more - alas, no binaries.

My output (which is both lengthy and repetitive starts:

gcc.compile.c++ bin.v2\libs\regex\build\gcc\release\link-static\runtime-link-static\w32_regex_traits.o
'-ftemplate-depth-128' is not recognized as an internal or external command,

      -ftemplate-depth-128 -03 -finline-functions -Wno-inline -Wall -DBOOST_ALL_
_NO_LIB=1 -DNDEBUG -I"." -c -o "bin.v2\libs\regex\build\gcc\release\link-static
\runtime-link-static\w32_regex_traits.o" "libs\regex\src\..\src\w32_regex_traits
.cpp"

...failed gcc.compile.c++ bin.v2 etc, etc., etc....


...many similar listings with 'failed' as the theme follow this...

Volodya (...or anyone else!)  Could you spare another small hint in my quest for installed binaries...please?

Best,

Petrus



boost-build-request@lists.boost.org wrote:
Send Boost-build mailing list submissions to
	boost-build@lists.boost.org

To subscribe or unsubscribe via the World Wide Web, visit
	http://lists.boost.org/mailman/listinfo.cgi/boost-build
or, via email, send a message with subject or body 'help' to
	boost-build-request@lists.boost.org

You can reach the person managing the list at
	boost-build-owner@lists.boost.org

When replying, please edit your Subject line so it is more specific
than "Re: Contents of Boost-build digest..."


Today's Topics:

   1. "GCC unknown in module user-config" (Petrus B. van Bork)
   2. Re: "GCC unknown in module user-config" (Vladimir Prus)
   3. test timing information (David Abrahams)


----------------------------------------------------------------------

Message: 1
Date: Fri, 09 Nov 2007 17:28:06 -0500
From: "Petrus B. van Bork" <pvanbork@outerline.com>
Subject: [Boost-build] "GCC unknown in module user-config"
To: boost-build@lists.boost.org
Message-ID: <4734DEF6.9010709@outerline.com>
Content-Type: text/plain; charset="iso-8859-1"

Dear All:

Endlessly and unsuccessfully trying to get binaries. 

I have WinXP/Eclipse with CDT, Wingw.  No matter how I run bjam.exe I 
get something like:

*......tools/build/v2/user-config.jam:18: in modules.load rule GCC 
unknown in module user-config.*

I have looked at documentation tried various things (5+ person 
hours-worth) - no binaries.

In user-config.jam I have uncommented:
*
import toolset : using ;

  GCC configuration

  Configure gcc (default version)
  using gcc ;*

All directories are located on my e:\ drive.

I know Mingw works as I have been using this install of Eclipse/CDT with 
Mingw and the gcc compiler for some time.

I am starting to go around in circles - any leads as to the 'why' of 
this would be very, very much appreciated.

Best,

Petrus
-------------- next part --------------
HTML attachment scrubbed and removed

------------------------------

Message: 2
Date: Sat, 10 Nov 2007 15:14:46 +0300
From: Vladimir Prus <ghost@cs.msu.su>
Subject: Re: [Boost-build] "GCC unknown in module user-config"
To: boost-build@lists.boost.org
Message-ID: <fh47bm$pes$1@ger.gmane.org>
Content-Type: text/plain; charset=us-ascii

Petrus B. van Bork wrote:

  
Dear All:

Endlessly and unsuccessfully trying to get binaries.

I have WinXP/Eclipse with CDT, Wingw.  No matter how I run bjam.exe I
get something like:

*......tools/build/v2/user-config.jam:18: in modules.load rule GCC
unknown in module user-config.*

I have looked at documentation tried various things (5+ person
hours-worth) - no binaries.

In user-config.jam I have uncommented:
*
import toolset : using ;

  GCC configuration

  Configure gcc (default version)
  using gcc ;*
    

You should have uncommented only:

        using gcc ;

- Volodya