Boost logo

Boost-Build :

From: Vladimir Prus (ghost_at_[hidden])
Date: 2003-01-15 12:02:42


David Abrahams wrote:

>>I *really* meant "bjam gcc-123"...
>
>
> Looks OK to me:
>
> set PATH=c:/tools/mingw-2.0/bin;%PATH% && bjam gcc-123
> c:\boost\tools\build\examples-v2\..\new\feature.jam:209: in implied-subfeature from module feature
> error: "123" is not a known subfeature value of feature <toolset>
> c:\boost\tools\build\examples-v2\..\new\feature.jam:356: in feature.validate-value-string from module feature
> c:\boost\tools\build\examples-v2\..\new\property.jam:216: in validate from module property
> c:\boost\tools\build\examples-v2\..\new\property.jam:230: in property.validate-property-sets from module property
> c:\boost\tools\build\examples-v2\..\new\build-request.jam:105: in build-request.expand from module build-request

Yes, sure. Because my check is there! With the attached diff against CVS
state, I get the error I've described.

- Volodya

 --------------010104000502090904010208 Content-Type: text/plain;
name="local_mods.diff"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
filename="local_mods.diff"

Index: gcc-tools.jam
===================================================================
RCS file: /cvsroot/boost/boost/tools/build/gcc-tools.jam,v
retrieving revision 1.61
diff -u -r1.61 gcc-tools.jam
--- gcc-tools.jam 13 Jan 2003 16:13:51 -0000 1.61
+++ gcc-tools.jam 15 Jan 2003 16:56:03 -0000
@@ -235,7 +235,7 @@
#
# define compiler names if not set:
GCC ?= gcc ;
-GXX ?= g++ ;
+GXX ?= g++-3.2 ;

flags gcc CFLAGS <profiling>on : -pg ;
Index: examples-v2/hello/Jamfile
===================================================================
RCS file: /cvsroot/boost/boost/tools/build/examples-v2/hello/Jamfile,v
retrieving revision 1.4
diff -u -r1.4 Jamfile
--- examples-v2/hello/Jamfile 13 Jan 2003 16:14:59 -0000 1.4
+++ examples-v2/hello/Jamfile 15 Jan 2003 16:56:03 -0000
@@ -3,3 +3,5 @@

symlink hello_debug hello_release : hello/<variant>debug hello/<variant>release ;
symlink links/hello_release : hello/<variant>release ;
+
+#stage dist : hello aux/1 ;
Index: new/build-request.jam
===================================================================
RCS file: /cvsroot/boost/boost/tools/build/new/build-request.jam,v
retrieving revision 1.16
diff -u -r1.16 build-request.jam
--- new/build-request.jam 15 Jan 2003 11:41:16 -0000 1.16
+++ new/build-request.jam 15 Jan 2003 16:56:04 -0000
@@ -102,7 +102,7 @@
#
rule expand ( property-sets * : feature-space ? )
{
- property.validate-property-sets $(property-sets) ;
+# property.validate-property-sets $(property-sets) ;
feature-space ?= feature ;
local expanded = [ expand-no-defaults $(property-sets) : $(feature-space) ] ;

 --------------010104000502090904010208--


Boost-Build list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk