gdbserver: re-generate configure

I get some diffs when running autoconf in gdbserver, probably leftovers
from commit 5dfe4bfcb969 ("Fix format_pieces selftest on Windows").
Re-generate configure in that directory.

Change-Id: Icdc9906af95fbaf1047a579914b2983f8ec5db08
This commit is contained in:
Simon Marchi 2021-11-04 14:13:30 -04:00
parent 33d3e18ed7
commit 6c130ba387
2 changed files with 49 additions and 0 deletions

View File

@ -398,6 +398,9 @@
/* Additional package description */
#undef PKGVERSION
/* Define to 1 if the "%ll" format works to print long longs. */
#undef PRINTF_HAS_LONG_LONG
/* Define to necessary symbol if this constant uses a non-standard name on
your system. */
#undef PTHREAD_CREATE_JOINABLE

46
gdbserver/configure vendored
View File

@ -8558,6 +8558,52 @@ fi
fi
fi
# Check if the compiler and runtime support printing long longs.
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for long long support in printf" >&5
$as_echo_n "checking for long long support in printf... " >&6; }
if ${gdb_cv_printf_has_long_long+:} false; then :
$as_echo_n "(cached) " >&6
else
if test "$cross_compiling" = yes; then :
gdb_cv_printf_has_long_long=no
else
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
$ac_includes_default
int
main ()
{
char buf[32];
long long l = 0;
l = (l << 16) + 0x0123;
l = (l << 16) + 0x4567;
l = (l << 16) + 0x89ab;
l = (l << 16) + 0xcdef;
sprintf (buf, "0x%016llx", l);
return (strcmp ("0x0123456789abcdef", buf));
;
return 0;
}
_ACEOF
if ac_fn_c_try_run "$LINENO"; then :
gdb_cv_printf_has_long_long=yes
else
gdb_cv_printf_has_long_long=no
fi
rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
conftest.$ac_objext conftest.beam conftest.$ac_ext
fi
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $gdb_cv_printf_has_long_long" >&5
$as_echo "$gdb_cv_printf_has_long_long" >&6; }
if test "$gdb_cv_printf_has_long_long" = yes; then
$as_echo "#define PRINTF_HAS_LONG_LONG 1" >>confdefs.h
fi
$as_echo "#define _STRUCTURED_PROC 1" >>confdefs.h