mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2025-01-19 15:34:18 +00:00
From 2000-04-28 Andreas Jaeger <aj@suse.de>:
Properly check for GCC version number.
This commit is contained in:
parent
01fff6e2f4
commit
7d4187854f
@ -1,3 +1,8 @@
|
||||
Mon May 1 15:37:58 2000 Andrew Cagney <cagney@b1.cygnus.com>
|
||||
|
||||
From 2000-04-28 Andreas Jaeger <aj@suse.de>:
|
||||
* defs.h: Properly check for GCC version number.
|
||||
|
||||
2000-04-30 Mark Kettenis <kettenis@gnu.org>
|
||||
|
||||
Fix single-stepping out of signal trampolines.
|
||||
|
@ -253,7 +253,7 @@ struct cleanup
|
||||
works everywhere we use it. */
|
||||
|
||||
#ifndef ATTR_NORETURN
|
||||
#if defined(__GNUC__) && __GNUC__ >= 2 && __GNUC_MINOR__ >= 7
|
||||
#if defined(__GNUC__) && (__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7))
|
||||
#define ATTR_NORETURN __attribute__ ((noreturn))
|
||||
#else
|
||||
#define ATTR_NORETURN /* nothing */
|
||||
@ -261,7 +261,7 @@ struct cleanup
|
||||
#endif
|
||||
|
||||
#ifndef ATTR_FORMAT
|
||||
#if defined(__GNUC__) && __GNUC__ >= 2 && __GNUC_MINOR__ >= 4
|
||||
#if defined(__GNUC__) && (__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 4))
|
||||
#define ATTR_FORMAT(type, x, y) __attribute__ ((format(type, x, y)))
|
||||
#else
|
||||
#define ATTR_FORMAT(type, x, y) /* nothing */
|
||||
|
@ -1,3 +1,9 @@
|
||||
Mon May 1 15:37:58 2000 Andrew Cagney <cagney@b1.cygnus.com>
|
||||
|
||||
From 2000-04-28 Andreas Jaeger <aj@suse.de>:
|
||||
* gdb.c++/templates.cc: Properly check for GCC version number.
|
||||
* lib/compiler.cc: Likewise
|
||||
|
||||
2000-04-26 Michael Snyder <msnyder@seadog.cygnus.com>
|
||||
|
||||
* gdb.base/call-ar-st.exp: Bail out if target is sparclet.
|
||||
|
@ -523,7 +523,7 @@ public:
|
||||
};
|
||||
T5<x> t5x(5);
|
||||
|
||||
#if !defined(__GNUC__) || (__GNUC__ >= 2 && __GNUC_MINOR__ >= 6)
|
||||
#if !defined(__GNUC__) || (__GNUC__ > 2) || (__GNUC__ == 2 && __GNUC_MINOR__ >= 6)
|
||||
template class T5<char>;
|
||||
template class T5<int>;
|
||||
template class T5<int (*)(char, void *)>;
|
||||
|
@ -13,7 +13,7 @@
|
||||
definition made with 'set" to see if one already exists, and if so
|
||||
warn about conflicts if it is being set to something else. */
|
||||
|
||||
#if defined(__GNUC__) && __GNUC__ >= 2 && __GNUC_MINOR__ >= 6
|
||||
#if defined(__GNUC__) && (__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 6))
|
||||
set supports_template_debugging 1
|
||||
#else
|
||||
set supports_template_debugging 0
|
||||
|
Loading…
x
Reference in New Issue
Block a user