From: Johanna Svenningsson <mea@nada.kth.se>
To: gdb-patches@cygnus.com
Subject: in order to build gdb-4.17.87 on AIX 4.3.2
Date: Thu, 01 Apr 1999 00:00:00 -0000 [thread overview]
Message-ID: <ltp4sn78y6f.fsf@scup.pdc.kth.se> (raw)
Somce C-compilers are moodier than others. IBM's xlc for example
just can't stand commas in the end of an enum.
Best Regards,
Johanna Svenningsson
1999-03-27 Johanna Svenningsson <mea@pdc.kth.se>
* *: removed trailing comma.
:)
*** gdb-4.17.87/gdb/ax-gdb.h Thu Dec 3 00:22:58 1998
--- gdb-4.17.86-AIX/gdb/ax-gdb.h Wed Mar 24 11:25:18 1999
***************
*** 65,71 ****
the register number. If the caller needs an rvalue, it should
call require_rvalue to produce the rvalue from this register
number. */
! axs_lvalue_register,
};
/* Structure describing what we got from a subexpression. Think of
--- 65,71 ----
the register number. If the caller needs an rvalue, it should
call require_rvalue to produce the rvalue from this register
number. */
! axs_lvalue_register
};
/* Structure describing what we got from a subexpression. Think of
*** gdb-4.17.87/gdb/ax.h Thu Dec 3 00:22:58 1998
--- gdb-4.17.86-AIX/gdb/ax.h Wed Mar 24 11:26:12 1999
***************
*** 129,135 ****
aop_zero_ext = 0x2a,
aop_swap = 0x2b,
aop_trace16 = 0x30,
! aop_last,
};
--- 129,135 ----
aop_zero_ext = 0x2a,
aop_swap = 0x2b,
aop_trace16 = 0x30,
! aop_last
};
***************
*** 238,244 ****
/* agent_reqs was unable to prove that every instruction following
an unconditional jump was the target of some other jump. */
! agent_flaw_hole,
};
/* Structure describing the requirements of a bytecode expression. */
--- 238,244 ----
/* agent_reqs was unable to prove that every instruction following
an unconditional jump was the target of some other jump. */
! agent_flaw_hole
};
/* Structure describing the requirements of a bytecode expression. */
*** gdb-4.17.87/gdb/tracepoint.h Fri Nov 13 01:31:39 1998
--- gdb-4.17.86-AIX/gdb/tracepoint.h Wed Mar 24 12:09:15 1999
***************
*** 99,105 ****
BADLINE = -1,
GENERIC = 0,
END = 1,
! STEPPING = 2,
};
--- 99,105 ----
BADLINE = -1,
GENERIC = 0,
END = 1,
! STEPPING = 2
};
*** gdb-4.17.87/gdb/config/xm-aix4.h Wed Dec 9 01:38:45 1998
--- gdb-4.17.86-AIX/gdb/config/xm-aix4.h Wed Mar 24 15:10:09 1999
***************
*** 67,72 ****
--- 67,74 ----
#define vfork fork
+ char *termdef(int,int);
+
/* Signal handler for SIGWINCH `window size changed'. */
#define SIGWINCH_HANDLER aix_resizewindow
***************
*** 95,97 ****
--- 97,104 ----
chars_per_line = val; \
} \
}
+
+
+
+
+
*** gdb-4.17.87/include/elf/mips.h Thu Mar 25 04:39:21 1999
--- gdb-4.17.86-AIX/include/elf/mips.h Wed Mar 24 13:29:25 1999
***************
*** 77,83 ****
RELOC_NUMBER (R_MIPS16_GPREL, 101)
/* These are GNU extensions to enable C++ vtable garbage collection. */
RELOC_NUMBER (R_MIPS_GNU_VTINHERIT, 253)
! RELOC_NUMBER (R_MIPS_GNU_VTENTRY, 254)
END_RELOC_NUMBERS
/* Processor specific flags for the ELF header e_flags field. */
--- 77,83 ----
RELOC_NUMBER (R_MIPS16_GPREL, 101)
/* These are GNU extensions to enable C++ vtable garbage collection. */
RELOC_NUMBER (R_MIPS_GNU_VTINHERIT, 253)
! LAST_RELOC_NUMBER (R_MIPS_GNU_VTENTRY, 254)
END_RELOC_NUMBERS
/* Processor specific flags for the ELF header e_flags field. */
*** gdb-4.17.87/include/elf/reloc-macros.h Wed Nov 11 06:58:06 1998
--- gdb-4.17.86-AIX/include/elf/reloc-macros.h Wed Mar 24 13:31:05 1999
***************
*** 78,85 ****
--- 78,87 ----
#ifdef __STDC__
#define RELOC_NUMBER(name, number) case number : return #name ;
+ #define LAST_RELOC_NUMBER(name, number) case number : return #name ;
#else
#define RELOC_NUMBER(name, number) case number : return "name" ;
+ #define LAST_RELOC_NUMBER(name, number) case number : return "name" ;
#endif
#define FAKE_RELOC(name, number)
***************
*** 96,103 ****
--- 98,112 ----
#define RELOC_NUMBER(name, number) name = number ,
#define FAKE_RELOC(name, number) name = number ,
#define EMPTY_RELOC(name) name ,
+ #define LAST_RELOC_NUMBER(name,number) name = number
#define END_RELOC_NUMBERS };
#endif
#endif /* RELOC_MACROS_H */
+
WARNING: multiple messages have this Message-ID
From: Johanna Svenningsson <mea@nada.kth.se>
To: gdb-patches@cygnus.com
Subject: in order to build gdb-4.17.87 on AIX 4.3.2
Date: Fri, 26 Mar 1999 18:27:00 -0000 [thread overview]
Message-ID: <ltp4sn78y6f.fsf@scup.pdc.kth.se> (raw)
Message-ID: <19990326182700.C8lQRCSghRGjwnztpR3RoRoxepBmPTGEWTJeuUuSa6I@z> (raw)
Somce C-compilers are moodier than others. IBM's xlc for example
just can't stand commas in the end of an enum.
Best Regards,
Johanna Svenningsson
1999-03-27 Johanna Svenningsson <mea@pdc.kth.se>
* *: removed trailing comma.
:)
*** gdb-4.17.87/gdb/ax-gdb.h Thu Dec 3 00:22:58 1998
--- gdb-4.17.86-AIX/gdb/ax-gdb.h Wed Mar 24 11:25:18 1999
***************
*** 65,71 ****
the register number. If the caller needs an rvalue, it should
call require_rvalue to produce the rvalue from this register
number. */
! axs_lvalue_register,
};
/* Structure describing what we got from a subexpression. Think of
--- 65,71 ----
the register number. If the caller needs an rvalue, it should
call require_rvalue to produce the rvalue from this register
number. */
! axs_lvalue_register
};
/* Structure describing what we got from a subexpression. Think of
*** gdb-4.17.87/gdb/ax.h Thu Dec 3 00:22:58 1998
--- gdb-4.17.86-AIX/gdb/ax.h Wed Mar 24 11:26:12 1999
***************
*** 129,135 ****
aop_zero_ext = 0x2a,
aop_swap = 0x2b,
aop_trace16 = 0x30,
! aop_last,
};
--- 129,135 ----
aop_zero_ext = 0x2a,
aop_swap = 0x2b,
aop_trace16 = 0x30,
! aop_last
};
***************
*** 238,244 ****
/* agent_reqs was unable to prove that every instruction following
an unconditional jump was the target of some other jump. */
! agent_flaw_hole,
};
/* Structure describing the requirements of a bytecode expression. */
--- 238,244 ----
/* agent_reqs was unable to prove that every instruction following
an unconditional jump was the target of some other jump. */
! agent_flaw_hole
};
/* Structure describing the requirements of a bytecode expression. */
*** gdb-4.17.87/gdb/tracepoint.h Fri Nov 13 01:31:39 1998
--- gdb-4.17.86-AIX/gdb/tracepoint.h Wed Mar 24 12:09:15 1999
***************
*** 99,105 ****
BADLINE = -1,
GENERIC = 0,
END = 1,
! STEPPING = 2,
};
--- 99,105 ----
BADLINE = -1,
GENERIC = 0,
END = 1,
! STEPPING = 2
};
*** gdb-4.17.87/gdb/config/xm-aix4.h Wed Dec 9 01:38:45 1998
--- gdb-4.17.86-AIX/gdb/config/xm-aix4.h Wed Mar 24 15:10:09 1999
***************
*** 67,72 ****
--- 67,74 ----
#define vfork fork
+ char *termdef(int,int);
+
/* Signal handler for SIGWINCH `window size changed'. */
#define SIGWINCH_HANDLER aix_resizewindow
***************
*** 95,97 ****
--- 97,104 ----
chars_per_line = val; \
} \
}
+
+
+
+
+
*** gdb-4.17.87/include/elf/mips.h Thu Mar 25 04:39:21 1999
--- gdb-4.17.86-AIX/include/elf/mips.h Wed Mar 24 13:29:25 1999
***************
*** 77,83 ****
RELOC_NUMBER (R_MIPS16_GPREL, 101)
/* These are GNU extensions to enable C++ vtable garbage collection. */
RELOC_NUMBER (R_MIPS_GNU_VTINHERIT, 253)
! RELOC_NUMBER (R_MIPS_GNU_VTENTRY, 254)
END_RELOC_NUMBERS
/* Processor specific flags for the ELF header e_flags field. */
--- 77,83 ----
RELOC_NUMBER (R_MIPS16_GPREL, 101)
/* These are GNU extensions to enable C++ vtable garbage collection. */
RELOC_NUMBER (R_MIPS_GNU_VTINHERIT, 253)
! LAST_RELOC_NUMBER (R_MIPS_GNU_VTENTRY, 254)
END_RELOC_NUMBERS
/* Processor specific flags for the ELF header e_flags field. */
*** gdb-4.17.87/include/elf/reloc-macros.h Wed Nov 11 06:58:06 1998
--- gdb-4.17.86-AIX/include/elf/reloc-macros.h Wed Mar 24 13:31:05 1999
***************
*** 78,85 ****
--- 78,87 ----
#ifdef __STDC__
#define RELOC_NUMBER(name, number) case number : return #name ;
+ #define LAST_RELOC_NUMBER(name, number) case number : return #name ;
#else
#define RELOC_NUMBER(name, number) case number : return "name" ;
+ #define LAST_RELOC_NUMBER(name, number) case number : return "name" ;
#endif
#define FAKE_RELOC(name, number)
***************
*** 96,103 ****
--- 98,112 ----
#define RELOC_NUMBER(name, number) name = number ,
#define FAKE_RELOC(name, number) name = number ,
#define EMPTY_RELOC(name) name ,
+ #define LAST_RELOC_NUMBER(name,number) name = number
#define END_RELOC_NUMBERS };
#endif
#endif /* RELOC_MACROS_H */
+
next reply other threads:[~1999-04-01 0:00 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
1999-04-01 0:00 Johanna Svenningsson [this message]
1999-03-26 18:27 ` Johanna Svenningsson
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=ltp4sn78y6f.fsf@scup.pdc.kth.se \
--to=mea@nada.kth.se \
--cc=gdb-patches@cygnus.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox