This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [www-patch] Testing C++ changes


On Wed, 26 Nov 2003 01:40:06 +0100 (CET), Volker Reichelt <reichelt@igpm.rwth-aachen.de> wrote:

> +cd gcc
> +make cc1plus    [.exe for cygwin]                      # build C++ compiler
> +cd ..
> +make clean-target-libstdc++-v3 all-target-libstdc++-v3 # rebuild libstdc++

This breaks with parallel make; it will try to both clean and build
libstdc++ at the same time.

> +cd gcc/libjava

The libjava directory isn't under gcc.

> +make clean-nat all                                     # rebuild libjava

This has the same problem as above.

> +cd ..
> +make check-g++                                         # run C++ testsuite

And you are neglecting to run the libstdc++ testsuite.

FWIW, I do

$ rm -rf */libstdc++-v3
$ test -d */libjava && make -C */libjava clean-nat
$ make all-target-libstdc++-v3 all-target-libjava
$ make -k check-c++

Jason


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]