3 Copyright (C) 1986-2019 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20 #ifndef COMMON_COMMON_DEFS_H
21 #define COMMON_COMMON_DEFS_H
26 #undef PACKAGE_VERSION
28 #undef PACKAGE_TARNAME
31 #include "build-gnulib-gdbserver/config.h"
33 #include "build-gnulib/config.h"
37 #undef PACKAGE_VERSION
39 #undef PACKAGE_TARNAME
42 https://www.gnu.org/software/gnulib/manual/html_node/stdint_002eh.html
44 "On some hosts that predate C++11, when using C++ one must define
45 __STDC_CONSTANT_MACROS to make visible the definitions of constant
46 macros such as INTMAX_C, and one must define __STDC_LIMIT_MACROS to
47 make visible the definitions of limit macros such as INTMAX_MAX.".
50 https://www.gnu.org/software/gnulib/manual/html_node/inttypes_002eh.html
52 "On some hosts that predate C++11, when using C++ one must define
53 __STDC_FORMAT_MACROS to make visible the declarations of format
54 macros such as PRIdMAX."
56 Must do this before including any system header, since other system
57 headers may include stdint.h/inttypes.h. */
58 #define __STDC_CONSTANT_MACROS 1
59 #define __STDC_LIMIT_MACROS 1
60 #define __STDC_FORMAT_MACROS 1
62 /* Some distros enable _FORTIFY_SOURCE by default, which on occasion
63 has caused build failures with -Wunused-result when a patch is
64 developed on a distro that does not enable _FORTIFY_SOURCE. We
65 enable it here in order to try to catch these problems earlier;
66 plus this seems like a reasonable safety measure. The check for
67 optimization is required because _FORTIFY_SOURCE only works when
68 optimization is enabled. If _FORTIFY_SOURCE is already defined,
69 then we don't do anything. */
71 #if !defined _FORTIFY_SOURCE && defined __OPTIMIZE__ && __OPTIMIZE__ > 0
72 #define _FORTIFY_SOURCE 2
75 /* We don't support Windows versions before XP, so we define
76 _WIN32_WINNT correspondingly to ensure the Windows API headers
77 expose the required symbols. */
78 #if defined (__MINGW32__) || defined (__CYGWIN__)
80 # if _WIN32_WINNT < 0x0501
82 # define _WIN32_WINNT 0x0501
85 # define _WIN32_WINNT 0x0501
87 #endif /* __MINGW32__ || __CYGWIN__ */
96 #include <strings.h> /* for strcasecmp and strncasecmp */
101 #include "ansidecl.h"
102 /* This is defined by ansidecl.h, but we prefer gnulib's version. On
103 MinGW, gnulib might enable __USE_MINGW_ANSI_STDIO, which may or not
104 require use of attribute gnu_printf instead of printf. gnulib
105 checks that at configure time. Since _GL_ATTRIBUTE_FORMAT_PRINTF
106 is compatible with ATTRIBUTE_PRINTF, simply use it. */
107 #undef ATTRIBUTE_PRINTF
108 #define ATTRIBUTE_PRINTF _GL_ATTRIBUTE_FORMAT_PRINTF
110 #if GCC_VERSION >= 3004
111 #define ATTRIBUTE_UNUSED_RESULT __attribute__ ((__warn_unused_result__))
113 #define ATTRIBUTE_UNUSED_RESULT
116 #include "libiberty.h"
118 #include "gdb/signals.h"
119 #include "gdb_locale.h"
121 #include "common-types.h"
122 #include "common-utils.h"
123 #include "gdb_assert.h"
125 #include "print-utils.h"
126 #include "common-debug.h"
127 #include "cleanups.h"
128 #include "common-exceptions.h"
129 #include "common/poison.h"
131 #define EXTERN_C extern "C"
132 #define EXTERN_C_PUSH extern "C" {
133 #define EXTERN_C_POP }
135 /* Pull in gdb::unique_xmalloc_ptr. */
136 #include "common/gdb_unique_ptr.h"
138 /* String containing the current directory (what getwd would return). */
139 extern char *current_directory
;
141 /* sbrk on macOS is not useful for our purposes, since sbrk(0) always
142 returns the same value. brk/sbrk on macOS is just an emulation
143 that always returns a pointer to a 4MB section reserved for
146 #if defined (HAVE_SBRK) && !__APPLE__
147 #define HAVE_USEFUL_SBRK 1
150 #endif /* COMMON_COMMON_DEFS_H */