Hi, Jason > On 9/9/20 6:25 AM, Hu Jiangping wrote: > > This patch check the command 'make check-g++' to 'make check-c++' in > > install.texi since there is no 'make check-g++' target in the object > > directory. > > make check-g++ works fine for me in the object directory. And > gcc/cp/Make-lang.in includes Oh, there might be something wrong with my execute flow or configuration.
I run 'make check-g++' as the following flow: 1) move to object directory & run configure script 2) run make -j8 3) run make check-g++ It give the following output: # make check-g++ make: *** No rule to make target 'check-g++'. Stop. If the flow is OK, the reason must be in configuration, then it will become a little difficult to determine. However I'm not in a hurry to solve this problem, I can move to the gcc subdirectory to run the tests that I want to. > > > # 'make check' in gcc/ looks for check-c++, as do all toplevel C++- > related > > # check targets. However, our DejaGNU framework requires 'check-g++' as > its > > # entry point. We feed the former to the latter here. > > check-c++ : check-g++ > > So this change doesn't seem like an improvement. OK. Thanks anyway. Regards! Hujp > > Jason > >