$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
From: Vladimir Prus (ghost_at_[hidden])
Date: 2005-01-05 03:39:02
On Tuesday 04 January 2005 17:46, David Abrahams wrote:
> Vladimir Prus wrote:
> > Try running
> >
> > python test_all.py gcc-3.2
> >
> > The test system does not know the default version of gcc is 3.2
>
> Heck, what I went through trying to fix that was awful!
> Can't we make it work automatically?
I don't know how. If you have
using gcc : 3.2 ;
in user-config.jam then 3.2 will show in target paths, and test system can't
know it without looking at user-config.jam. But maybe, we can
use regular expressions, so that we look for a file
bin/gcc[^/]*/debug/a.exe
not
bin/gcc/debug/a.exe
? But then, it's will make impossible to test several version of a toolset.
- Volodya