From: John Baldwin Date: Thu, 30 Nov 2017 00:28:01 +0000 (-0800) Subject: Define MPFR_USE_INTMAX_T so that mpfr.h assumes intmax_t is available. X-Git-Tag: users/hjl/linux/release/2.29.51.0.1^2~10^2~10 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7505954411a168f5c5b9adec23eac55b1532fbe6;p=thirdparty%2Fbinutils-gdb.git Define MPFR_USE_INTMAX_T so that mpfr.h assumes intmax_t is available. mpfr.h uses a non-portable test to guess if intmax_t is available and if API functions using intmax_t should be exposed. Define MPFR_USE_INTMAX_T to override the non-portable test and always expose these functions. This fixes the build on platforms where the test guesses incorrectly. gdb/ChangeLog: * target-float.c [HAVE_LIBMPFR]: Define MPFR_USE_INTMAX_T. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index ca8c5dfaf13..d6cbba8aeb1 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2017-11-29 John Baldwin + + * target-float.c [HAVE_LIBMPFR]: Define MPFR_USE_INTMAX_T. + 2017-11-29 Joel Brobecker * ada-lang.c (to_fixed_range_type): Make sure that the size diff --git a/gdb/target-float.c b/gdb/target-float.c index 32237ec9d93..b40b6416c1c 100644 --- a/gdb/target-float.c +++ b/gdb/target-float.c @@ -1147,6 +1147,8 @@ host_float_ops::compare (const gdb_byte *x, const struct type *type_x, #ifdef HAVE_LIBMPFR +#define MPFR_USE_INTMAX_T + #include class mpfr_float_ops : public target_float_ops