ax.c checks: #if defined (CC_HAS_LONG_LONG) && defined (PRINTF_HAS_LONG_LONG) As far as I can tell, nothing ever defines CC_HAS_LONG_LONG or PRINTF_HAS_LONG_LONG in gdbserver. PRINTF_HAS_LONG_LONG is also used in common/ See also PR 8442.
The master branch has been updated by Tom Tromey <tromey@sourceware.org>: https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=8d5e08e10e9e5e9a8998057544c8c153779aa3f5 commit 8d5e08e10e9e5e9a8998057544c8c153779aa3f5 Author: Tom Tromey <tromey@adacore.com> Date: Fri Jan 7 14:00:33 2022 -0700 Do not use CC_HAS_LONG_LONG ax.cc checks CC_HAS_LONG_LONG, but nothing defines this. However, PRINTF_HAS_LONG_LONG is checked in configure. This patch removes the former and keeps the latter. This is PR remote/14976 (filed by me in 2012, lol). I'm checking this in. Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=14976
Fixed.