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
# '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. Jason