This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: [www-patch] Testing C++ changes
- From: Jason Merrill <jason at redhat dot com>
- To: Volker Reichelt <reichelt at igpm dot rwth-aachen dot de>
- Cc: gcc-patches at gcc dot gnu dot org, giovannibajo at libero dot it, gerald at pfeifer dot com, mark at codesourcery dot com, tromey at redhat dot com, gdr at integrable-solutions dot net, toa at pop dot agri dot ch, gcc at gcc dot gnu dot org
- Date: Thu, 27 Nov 2003 01:06:43 -0500
- Subject: Re: [www-patch] Testing C++ changes
- References: <200311260040.hAQ0e3sV007841@relay.rwth-aachen.de>
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