From c7ab546c0e4593e6fdf5da59e2b3455e7ba8307c Mon Sep 17 00:00:00 2001 From: Jason Molenda Date: Fri, 13 Mar 1998 23:45:51 +0000 Subject: [PATCH] Fri Mar 13 15:43:53 1998 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) * config/mips/xm-mips.h (CC_HAS_LONG_LONG): Undefine for Ultrix when compiling with native cc, the compiler has broken long long support. --- gdb/ChangeLog | 6 ++++++ gdb/config/mips/xm-mips.h | 5 +++++ 2 files changed, 11 insertions(+) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 924c96e996..5f58a54dbb 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +Fri Mar 13 15:43:53 1998 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) + + * config/mips/xm-mips.h (CC_HAS_LONG_LONG): Undefine for Ultrix + when compiling with native cc, the compiler has broken long long + support. + Fri Mar 13 15:37:02 1998 Peter Schauer (pes@regent.e-technik.tu-muenchen.de) * config/m68k/xm-sun3os4.h: Remove malloc declarations, they diff --git a/gdb/config/mips/xm-mips.h b/gdb/config/mips/xm-mips.h index 3bbc72e951..a2e9a50991 100644 --- a/gdb/config/mips/xm-mips.h +++ b/gdb/config/mips/xm-mips.h @@ -27,6 +27,11 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /* Needed for DECstation core files. */ #include #define KERNEL_U_ADDR UADDR + +/* Native Ultrix cc has broken long long support. */ +#ifndef __GNUC__ +#undef CC_HAS_LONG_LONG +#endif #endif #if ! defined (__STDC__) && ! defined (offsetof) -- 2.34.1