rotate gdb/ChangeLog
[deliverable/binutils-gdb.git] / gdb / common / common-defs.h
CommitLineData
976411d6
GB
1/* Common definitions.
2
e2882c85 3 Copyright (C) 1986-2018 Free Software Foundation, Inc.
976411d6
GB
4
5 This file is part of GDB.
6
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.
11
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.
16
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/>. */
19
20#ifndef COMMON_DEFS_H
21#define COMMON_DEFS_H
22
23#include "config.h"
d0ac1c44
SM
24
25#undef PACKAGE_NAME
26#undef PACKAGE_VERSION
27#undef PACKAGE_STRING
28#undef PACKAGE_TARNAME
29
976411d6
GB
30#ifdef GDBSERVER
31#include "build-gnulib-gdbserver/config.h"
32#else
33#include "build-gnulib/config.h"
34#endif
35
d0ac1c44
SM
36#undef PACKAGE_NAME
37#undef PACKAGE_VERSION
38#undef PACKAGE_STRING
39#undef PACKAGE_TARNAME
40
28fe4f87
PA
41/* From:
42 https://www.gnu.org/software/gnulib/manual/html_node/stdint_002eh.html
43
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.".
48
b30f354a
PA
49 And:
50 https://www.gnu.org/software/gnulib/manual/html_node/inttypes_002eh.html
51
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."
55
56 Must do this before including any system header, since other system
57 headers may include stdint.h/inttypes.h. */
28fe4f87
PA
58#define __STDC_CONSTANT_MACROS 1
59#define __STDC_LIMIT_MACROS 1
b30f354a 60#define __STDC_FORMAT_MACROS 1
28fe4f87 61
a97b53dd
TT
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
656efb5e
SDJ
68 optimization is enabled. If _FORTIFY_SOURCE is already defined,
69 then we don't do anything. */
a97b53dd 70
656efb5e 71#if !defined _FORTIFY_SOURCE && defined __OPTIMIZE__ && __OPTIMIZE__ > 0
a97b53dd
TT
72#define _FORTIFY_SOURCE 2
73#endif
74
355e2102 75#include <stdarg.h>
d02f550d 76#include <stdio.h>
d7096f71 77#include <stdlib.h>
8ebb3f56 78#include <stddef.h>
8cc73a39 79#include <stdint.h>
6d3d12eb 80#include <string.h>
8ffc1bb1
EZ
81#ifdef HAVE_STRINGS_H
82#include <strings.h> /* for strcasecmp and strncasecmp */
83#endif
bb974a24 84#include <errno.h>
9c232dda 85#include <alloca.h>
91ee7171 86
0e443c87 87#include "ansidecl.h"
91ee7171
PA
88/* This is defined by ansidecl.h, but we prefer gnulib's version. On
89 MinGW, gnulib might enable __USE_MINGW_ANSI_STDIO, which may or not
90 require use of attribute gnu_printf instead of printf. gnulib
91 checks that at configure time. Since _GL_ATTRIBUTE_FORMAT_PRINTF
92 is compatible with ATTRIBUTE_PRINTF, simply use it. */
93#undef ATTRIBUTE_PRINTF
94#define ATTRIBUTE_PRINTF _GL_ATTRIBUTE_FORMAT_PRINTF
95
b9391142 96#include "libiberty.h"
a5fceff8 97#include "pathmax.h"
cb9f1a9b 98#include "gdb/signals.h"
3995eeee 99#include "gdb_locale.h"
4cb9c816 100#include "ptid.h"
03aef70f 101#include "common-types.h"
e76df0d0 102#include "common-utils.h"
dccbb609 103#include "gdb_assert.h"
ef87c8bb 104#include "errors.h"
f6e94d78 105#include "print-utils.h"
34abf635 106#include "common-debug.h"
6f1947e8 107#include "cleanups.h"
a442d071 108#include "common-exceptions.h"
b0b92aeb 109#include "common/poison.h"
d02f550d 110
ddb6d633
PA
111#define EXTERN_C extern "C"
112#define EXTERN_C_PUSH extern "C" {
113#define EXTERN_C_POP }
56000a98 114
5cc8c731 115/* Pull in gdb::unique_xmalloc_ptr. */
da804164
PA
116#include "common/gdb_unique_ptr.h"
117
b4987c95
SDJ
118/* String containing the current directory (what getwd would return). */
119extern char *current_directory;
120
6242c6a6
SM
121/* sbrk on macOS is not useful for our purposes, since sbrk(0) always
122 returns the same value. brk/sbrk on macOS is just an emulation
123 that always returns a pointer to a 4MB section reserved for
124 that. */
125
126#if defined (HAVE_SBRK) && !__APPLE__
127#define HAVE_USEFUL_SBRK 1
128#endif
129
976411d6 130#endif /* COMMON_DEFS_H */
This page took 0.314971 seconds and 4 git commands to generate.