[jam] "don't know how to make trie.c"

I've just tried to run the Boost regressions tests for the first time in many months, and it failed when trying to build jam. ./bootstrap/jam0 -f build.jam --toolset=gcc --toolset-root= don't know how to make trie.c ...found 47 targets... ...can't find 1 target... ...can't make 1 target... ...skipped bjam for lack of trie.c... ...skipped 1 target... bjam build failed. Rene, did you forget to "cvs add trie.c" ? More generally, since I haven't done this in a while ... Can I still run tools/regression/run_tests.sh to run the tests for a number of toolsets? And should toolsets I've defined myself in $BOOST_BUILD_PATH still be found? Thanks, Jon

Jonathan Wakely wrote:
I've just tried to run the Boost regressions tests for the first time in many months, and it failed when trying to build jam.
./bootstrap/jam0 -f build.jam --toolset=gcc --toolset-root= don't know how to make trie.c ...found 47 targets... ...can't find 1 target... ...can't make 1 target... ...skipped bjam for lack of trie.c... ...skipped 1 target... bjam build failed.
Rene, did you forget to "cvs add trie.c" ?
Eeeks... I think that may have been an errant checkin. Is this in HEAD? -- -- Grafik - Don't Assume Anything -- Redshift Software, Inc. - http://redshift-software.com -- rrivera/acm.org - grafik/redshift-software.com -- 102708583/icq - grafikrobot/aim - grafikrobot/yahoo

On Tue, May 01, 2007 at 01:19:23PM -0500, Rene Rivera wrote:
Jonathan Wakely wrote:
I've just tried to run the Boost regressions tests for the first time in many months, and it failed when trying to build jam.
./bootstrap/jam0 -f build.jam --toolset=gcc --toolset-root= don't know how to make trie.c ...found 47 targets... ...can't find 1 target... ...can't make 1 target... ...skipped bjam for lack of trie.c... ...skipped 1 target... bjam build failed.
Rene, did you forget to "cvs add trie.c" ?
Eeeks... I think that may have been an errant checkin. Is this in HEAD?
It is, yes. [redi@morion boost]$ cvs diff -r 1.92 -r 1.93 ./tools/jam/src/build.jam Index: ./tools/jam/src/build.jam =================================================================== RCS file: /cvsroot/boost/boost/tools/jam/src/build.jam,v retrieving revision 1.92 retrieving revision 1.93 diff -u -p -r1.92 -r1.93 --- ./tools/jam/src/build.jam 12 Nov 2006 06:25:09 -0000 1.92 +++ ./tools/jam/src/build.jam 1 May 2007 03:57:50 -0000 1.93 @@ -12,7 +12,7 @@ if $(VMS) { . = "_" ; } else { . = "." ; } # Info about what we are building. -_VERSION_ = 3 1 14 ; +_VERSION_ = 3 1 15 ; NAME = boost-jam ; VERSION = $(_VERSION_:J=$(.)) ; RELEASE = 1 ; @@ -402,6 +402,7 @@ jam.source = option.c parse.c regexp.c rules.c scan.c search.c subst.c w32_getreg.c timestamp.c variable.c modules.c strings.c filesys.c + trie.c builtins.c pwd.c class.c native.c modules/set.c modules/path.c modules/regex.c modules/property-set.c modules/sequence.c modules/order.c

Jonathan Wakely wrote:
On Tue, May 01, 2007 at 01:19:23PM -0500, Rene Rivera wrote:
Jonathan Wakely wrote:
I've just tried to run the Boost regressions tests for the first time in many months, and it failed when trying to build jam.
./bootstrap/jam0 -f build.jam --toolset=gcc --toolset-root= don't know how to make trie.c ...found 47 targets... ...can't find 1 target... ...can't make 1 target... ...skipped bjam for lack of trie.c... ...skipped 1 target... bjam build failed.
Rene, did you forget to "cvs add trie.c" ? Eeeks... I think that may have been an errant checkin. Is this in HEAD?
It is, yes.
OK, fixed. Of course only now do I noticed that I also deleted the file from my drive accidentally. Hopefully it's still in my backup. -- -- Grafik - Don't Assume Anything -- Redshift Software, Inc. - http://redshift-software.com -- rrivera/acm.org - grafik/redshift-software.com -- 102708583/icq - grafikrobot/aim - grafikrobot/yahoo

Jonathan Wakely wrote:
On Tue, May 01, 2007 at 05:58:45PM -0500, Rene Rivera wrote:
OK, fixed. Of course only now do I noticed that I also deleted the file from my drive accidentally. Hopefully it's still in my backup.
Yikes, hope you find it. Thanks for the quick fix.
You're welcome... But I lost the code :-( I guess if I have to I'll just rewrite it in C++ instead of C :-) -- -- Grafik - Don't Assume Anything -- Redshift Software, Inc. - http://redshift-software.com -- rrivera/acm.org - grafik/redshift-software.com -- 102708583/icq - grafikrobot/aim - grafikrobot/yahoo
participants (2)
-
Jonathan Wakely
-
Rene Rivera