New debian install, /bin/sh points to dash /scratch/src/gcc-13.orig/libcpp/configure: line 7847: test: =: unary operator expected line 7847 reads if (test $have_valgrind_h = no \ Why those superfluous braces? Removing them fixes the shell script.
GCC 7 had the patch. r7-912-gceb17928e5d1d5 introduced the bad code into configure.ac. Confirmed.
That's 100% POSIX conforming, it's just $have_valgrind_h etc. expanding to nothing (only gcc/configure has the necessary checks).
have_valgrind_h is never set anywhere. Adding before that code in configure.ac: dnl # This check AC_REQUIREs various stuff, so it *must not* be inside dnl # an if statement. This was the source of very frustrating bugs dnl # in converting to autoconf 2.5x! AC_CHECK_HEADER(valgrind.h, have_valgrind_h=yes, have_valgrind_h=no) Should fix the issue I think.
The problem was encountered with configure --enable-valgrind-annotations with valgrind not installed.
The master branch has been updated by Bernhard Reutner-Fischer <aldot@gcc.gnu.org>: https://gcc.gnu.org/g:5a6c698ea31f587151a2fa4a982c8cc43bd9cc45 commit r13-4165-g5a6c698ea31f587151a2fa4a982c8cc43bd9cc45 Author: Bernhard Reutner-Fischer <aldot@gcc.gnu.org> Date: Thu Nov 17 21:40:53 2022 +0100 libcpp: Add missing config for --enable-valgrind-annotations [PR107691] r7-912 copied (parts of) the valgrind annotation checks from gcc to libcpp. The above copies the missing pieces to libcpp to diagnose when libcpp is configured with --enable-valgrind-annotations but valgrind is not installed. libcpp/ChangeLog: PR preprocessor/107691 * configure.ac: Add valgrind header checks. * configure: Regenerate.
Fixed on the trunk.
GCC 10 branch is being closed.
GCC 11 branch is being closed.