Thu Mar 24 00:38:40 2016 UTC ()
adapt for vax.


(christos)
diff -r1.8 -r1.9 src/external/gpl3/gdb/dist/gdb/vaxbsd-nat.c
diff -r1.3 -r1.4 src/external/gpl3/gdb/lib/libbfd/arch/vax/bfd_stdint.h
diff -r1.3 -r1.4 src/external/gpl3/gdb/lib/libdecnumber/arch/vax/gstdint.h
diff -r1.5 -r1.6 src/external/gpl3/gdb/lib/libgdb/arch/vax/config.h

cvs diff -r1.8 -r1.9 src/external/gpl3/gdb/dist/gdb/Attic/vaxbsd-nat.c (switch to unified diff)

--- src/external/gpl3/gdb/dist/gdb/Attic/vaxbsd-nat.c 2015/08/16 09:58:29 1.8
+++ src/external/gpl3/gdb/dist/gdb/Attic/vaxbsd-nat.c 2016/03/24 00:38:40 1.9
@@ -1,166 +1,167 @@ @@ -1,166 +1,167 @@
1/* Native-dependent code for modern VAX BSD's. 1/* Native-dependent code for modern VAX BSD's.
2 2
3 Copyright (C) 2004-2015 Free Software Foundation, Inc. 3 Copyright (C) 2004-2015 Free Software Foundation, Inc.
4 4
5 This file is part of GDB. 5 This file is part of GDB.
6 6
7 This program is free software; you can redistribute it and/or modify 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 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 9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version. 10 (at your option) any later version.
11 11
12 This program is distributed in the hope that it will be useful, 12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of 13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details. 15 GNU General Public License for more details.
16 16
17 You should have received a copy of the GNU General Public License 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/>. */ 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19 19
 20#define _KERNTYPES
20#include "defs.h" 21#include "defs.h"
21#include "inferior.h" 22#include "inferior.h"
22#include "regcache.h" 23#include "regcache.h"
23#include "target.h" 24#include "target.h"
24 25
25#include <sys/types.h> 26#include <sys/types.h>
26#include <sys/ptrace.h> 27#include <sys/ptrace.h>
27#include <machine/reg.h> 28#include <machine/reg.h>
28 29
29#include "nbsd-nat.h" 30#include "nbsd-nat.h"
30#include "vax-tdep.h" 31#include "vax-tdep.h"
31#include "inf-ptrace.h" 32#include "inf-ptrace.h"
32 33
33#ifndef HAVE_GREGSET_T 34#ifndef HAVE_GREGSET_T
34typedef struct reg gregset_t; 35typedef struct reg gregset_t;
35#endif 36#endif
36 37
37/* Supply the general-purpose registers stored in GREGS to REGCACHE. */ 38/* Supply the general-purpose registers stored in GREGS to REGCACHE. */
38 39
39static void 40static void
40vaxbsd_supply_gregset (struct regcache *regcache, const void *gregs) 41vaxbsd_supply_gregset (struct regcache *regcache, const void *gregs)
41{ 42{
42 const gdb_byte *regs = gregs; 43 const gdb_byte *regs = gregs;
43 int regnum; 44 int regnum;
44 45
45 for (regnum = 0; regnum < VAX_NUM_REGS; regnum++) 46 for (regnum = 0; regnum < VAX_NUM_REGS; regnum++)
46 regcache_raw_supply (regcache, regnum, regs + regnum * 4); 47 regcache_raw_supply (regcache, regnum, regs + regnum * 4);
47} 48}
48 49
49/* Collect the general-purpose registers from REGCACHE and store them 50/* Collect the general-purpose registers from REGCACHE and store them
50 in GREGS. */ 51 in GREGS. */
51 52
52static void 53static void
53vaxbsd_collect_gregset (const struct regcache *regcache, 54vaxbsd_collect_gregset (const struct regcache *regcache,
54 void *gregs, int regnum) 55 void *gregs, int regnum)
55{ 56{
56 gdb_byte *regs = gregs; 57 gdb_byte *regs = gregs;
57 int i; 58 int i;
58 59
59 for (i = 0; i <= VAX_NUM_REGS; i++) 60 for (i = 0; i <= VAX_NUM_REGS; i++)
60 { 61 {
61 if (regnum == -1 || regnum == i) 62 if (regnum == -1 || regnum == i)
62 regcache_raw_collect (regcache, i, regs + i * 4); 63 regcache_raw_collect (regcache, i, regs + i * 4);
63 } 64 }
64} 65}
65  66
66void 67static void
67supply_gregset (struct regcache *regcache, const gregset_t *gregs) 68supply_gregset (struct regcache *regcache, const gregset_t *gregs)
68{ 69{
69 if (ptrace (PT_SETREGS, ptid_get_pid (inferior_ptid), 70 if (ptrace (PT_SETREGS, ptid_get_pid (inferior_ptid),
70 (PTRACE_TYPE_ARG3) gregs, ptid_get_lwp (inferior_ptid)) == -1) 71 (PTRACE_TYPE_ARG3) gregs, ptid_get_lwp (inferior_ptid)) == -1)
71 perror_with_name (_("Couldn't write registers")); 72 perror_with_name (_("Couldn't write registers"));
72} 73}
73 74
74void 75static void
75fill_gregset (const struct regcache *regcache, gregset_t *gregs, int regnum) 76fill_gregset (const struct regcache *regcache, gregset_t *gregs, int regnum)
76{ 77{
77 if (ptrace (PT_GETREGS, ptid_get_pid (inferior_ptid), 78 if (ptrace (PT_GETREGS, ptid_get_pid (inferior_ptid),
78 (PTRACE_TYPE_ARG3) gregs, ptid_get_lwp (inferior_ptid)) == -1) 79 (PTRACE_TYPE_ARG3) gregs, ptid_get_lwp (inferior_ptid)) == -1)
79 perror_with_name (_("Couldn't get registers")); 80 perror_with_name (_("Couldn't get registers"));
80} 81}
81  82
82 83
83/* Support for debugging kernel virtual memory images. */ 84/* Support for debugging kernel virtual memory images. */
84 85
85/* Fetch register REGNUM from the inferior. If REGNUM is -1, do this 86/* Fetch register REGNUM from the inferior. If REGNUM is -1, do this
86 for all registers. */ 87 for all registers. */
87 88
88static void 89static void
89vaxbsd_fetch_inferior_registers (struct target_ops *ops, 90vaxbsd_fetch_inferior_registers (struct target_ops *ops,
90 struct regcache *regcache, int regnum) 91 struct regcache *regcache, int regnum)
91{ 92{
92 gregset_t gregs; 93 gregset_t gregs;
93 94
94 fill_gregset (regcache, &gregs, regnum); 95 fill_gregset (regcache, &gregs, regnum);
95 96
96 vaxbsd_supply_gregset (regcache, &gregs); 97 vaxbsd_supply_gregset (regcache, &gregs);
97} 98}
98 99
99/* Store register REGNUM back into the inferior. If REGNUM is -1, do 100/* Store register REGNUM back into the inferior. If REGNUM is -1, do
100 this for all registers. */ 101 this for all registers. */
101 102
102static void 103static void
103vaxbsd_store_inferior_registers (struct target_ops *ops, 104vaxbsd_store_inferior_registers (struct target_ops *ops,
104 struct regcache *regcache, int regnum) 105 struct regcache *regcache, int regnum)
105{ 106{
106 gregset_t gregs; 107 gregset_t gregs;
107 108
108 fill_gregset (regcache, &gregs, regnum); 109 fill_gregset (regcache, &gregs, regnum);
109 110
110 vaxbsd_collect_gregset (regcache, &gregs, regnum); 111 vaxbsd_collect_gregset (regcache, &gregs, regnum);
111 112
112 supply_gregset (regcache, &gregs); 113 supply_gregset (regcache, &gregs);
113} 114}
114  115
115 116
116#include <sys/types.h> 117#include <sys/types.h>
117/* Support for debugging kernel virtual memory images. */ 118/* Support for debugging kernel virtual memory images. */
118 119
119#include <machine/pcb.h> 120#include <machine/pcb.h>
120 121
121#include "bsd-kvm.h" 122#include "bsd-kvm.h"
122 123
123static int 124static int
124vaxbsd_supply_pcb (struct regcache *regcache, struct pcb *pcb) 125vaxbsd_supply_pcb (struct regcache *regcache, struct pcb *pcb)
125{ 126{
126 int regnum; 127 int regnum;
127 128
128 /* The following is true for OpenBSD 3.5: 129 /* The following is true for OpenBSD 3.5:
129 130
130 The pcb contains the register state at the context switch inside 131 The pcb contains the register state at the context switch inside
131 cpu_switch(). */ 132 cpu_switch(). */
132 133
133 /* The stack pointer shouldn't be zero. */ 134 /* The stack pointer shouldn't be zero. */
134 if (pcb->KSP == 0) 135 if (pcb->KSP == 0)
135 return 0; 136 return 0;
136 137
137 for (regnum = VAX_R0_REGNUM; regnum < VAX_AP_REGNUM; regnum++) 138 for (regnum = VAX_R0_REGNUM; regnum < VAX_AP_REGNUM; regnum++)
138 regcache_raw_supply (regcache, regnum, &pcb->R[regnum - VAX_R0_REGNUM]); 139 regcache_raw_supply (regcache, regnum, &pcb->R[regnum - VAX_R0_REGNUM]);
139 regcache_raw_supply (regcache, VAX_AP_REGNUM, &pcb->AP); 140 regcache_raw_supply (regcache, VAX_AP_REGNUM, &pcb->AP);
140 regcache_raw_supply (regcache, VAX_FP_REGNUM, &pcb->FP); 141 regcache_raw_supply (regcache, VAX_FP_REGNUM, &pcb->FP);
141 regcache_raw_supply (regcache, VAX_SP_REGNUM, &pcb->KSP); 142 regcache_raw_supply (regcache, VAX_SP_REGNUM, &pcb->KSP);
142 regcache_raw_supply (regcache, VAX_PC_REGNUM, &pcb->PC); 143 regcache_raw_supply (regcache, VAX_PC_REGNUM, &pcb->PC);
143 regcache_raw_supply (regcache, VAX_PS_REGNUM, &pcb->PSL); 144 regcache_raw_supply (regcache, VAX_PS_REGNUM, &pcb->PSL);
144 145
145 return 1; 146 return 1;
146} 147}
147  148
148 149
149/* Provide a prototype to silence -Wmissing-prototypes. */ 150/* Provide a prototype to silence -Wmissing-prototypes. */
150void _initialize_vaxbsd_nat (void); 151void _initialize_vaxbsd_nat (void);
151 152
152void 153void
153_initialize_vaxbsd_nat (void) 154_initialize_vaxbsd_nat (void)
154{ 155{
155 struct target_ops *t; 156 struct target_ops *t;
156 157
157 /* Add some extra features to the common *BSD/vax target. */ 158 /* Add some extra features to the common *BSD/vax target. */
158 t = inf_ptrace_target (); 159 t = inf_ptrace_target ();
159 t->to_fetch_registers = vaxbsd_fetch_inferior_registers; 160 t->to_fetch_registers = vaxbsd_fetch_inferior_registers;
160 t->to_store_registers = vaxbsd_store_inferior_registers; 161 t->to_store_registers = vaxbsd_store_inferior_registers;
161 t->to_pid_to_exec_file = nbsd_pid_to_exec_file; 162 t->to_pid_to_exec_file = nbsd_pid_to_exec_file;
162 add_target (t); 163 add_target (t);
163 164
164 /* Support debugging kernel virtual memory images. */ 165 /* Support debugging kernel virtual memory images. */
165 bsd_kvm_add_target (vaxbsd_supply_pcb); 166 bsd_kvm_add_target (vaxbsd_supply_pcb);
166} 167}

cvs diff -r1.3 -r1.4 src/external/gpl3/gdb/lib/libbfd/arch/vax/bfd_stdint.h (switch to unified diff)

--- src/external/gpl3/gdb/lib/libbfd/arch/vax/bfd_stdint.h 2015/08/17 10:17:25 1.3
+++ src/external/gpl3/gdb/lib/libbfd/arch/vax/bfd_stdint.h 2016/03/24 00:38:40 1.4
@@ -1,51 +1,51 @@ @@ -1,51 +1,51 @@
1/* This file is automatically generated. DO NOT EDIT! */ 1/* This file is automatically generated. DO NOT EDIT! */
2/* Generated from: NetBSD: mknative-gdb,v 1.6 2013/10/03 18:58:37 christos Exp */ 2/* Generated from: NetBSD: mknative-gdb,v 1.6 2013/10/03 18:58:37 christos Exp */
3/* Generated from: NetBSD: mknative.common,v 1.11 2014/02/17 21:39:43 christos Exp */ 3/* Generated from: NetBSD: mknative.common,v 1.11 2014/02/17 21:39:43 christos Exp */
4 4
5/* generated for vax--netbsdelf-gcc (NetBSD nb1 20141012) 4.8.4 20141009 (prerelease) */ 5/* generated for vax--netbsdelf-gcc (NetBSD nb1 20160317) 5.3.0 */
6 6
7#ifndef GCC_GENERATED_STDINT_H 7#ifndef GCC_GENERATED_STDINT_H
8#define GCC_GENERATED_STDINT_H 1 8#define GCC_GENERATED_STDINT_H 1
9 9
10#include <sys/types.h> 10#include <sys/types.h>
11#include <stdint.h> 11#include <stdint.h>
12/* glibc uses these symbols as guards to prevent redefinitions. */ 12/* glibc uses these symbols as guards to prevent redefinitions. */
13#ifdef __int8_t_defined 13#ifdef __int8_t_defined
14#define _INT8_T 14#define _INT8_T
15#define _INT16_T 15#define _INT16_T
16#define _INT32_T 16#define _INT32_T
17#endif 17#endif
18#ifdef __uint32_t_defined 18#ifdef __uint32_t_defined
19#define _UINT32_T 19#define _UINT32_T
20#endif 20#endif
21 21
22 22
23/* Some systems have guard macros to prevent redefinitions, define them. */ 23/* Some systems have guard macros to prevent redefinitions, define them. */
24#ifndef _INT8_T 24#ifndef _INT8_T
25#define _INT8_T 25#define _INT8_T
26#endif 26#endif
27#ifndef _INT16_T 27#ifndef _INT16_T
28#define _INT16_T 28#define _INT16_T
29#endif 29#endif
30#ifndef _INT32_T 30#ifndef _INT32_T
31#define _INT32_T 31#define _INT32_T
32#endif 32#endif
33#ifndef _UINT8_T 33#ifndef _UINT8_T
34#define _UINT8_T 34#define _UINT8_T
35#endif 35#endif
36#ifndef _UINT16_T 36#ifndef _UINT16_T
37#define _UINT16_T 37#define _UINT16_T
38#endif 38#endif
39#ifndef _UINT32_T 39#ifndef _UINT32_T
40#define _UINT32_T 40#define _UINT32_T
41#endif 41#endif
42 42
43/* system headers have good uint64_t and int64_t */ 43/* system headers have good uint64_t and int64_t */
44#ifndef _INT64_T 44#ifndef _INT64_T
45#define _INT64_T 45#define _INT64_T
46#endif 46#endif
47#ifndef _UINT64_T 47#ifndef _UINT64_T
48#define _UINT64_T 48#define _UINT64_T
49#endif 49#endif
50 50
51#endif /* GCC_GENERATED_STDINT_H */ 51#endif /* GCC_GENERATED_STDINT_H */

cvs diff -r1.3 -r1.4 src/external/gpl3/gdb/lib/libdecnumber/arch/vax/gstdint.h (switch to unified diff)

--- src/external/gpl3/gdb/lib/libdecnumber/arch/vax/gstdint.h 2015/08/17 10:17:25 1.3
+++ src/external/gpl3/gdb/lib/libdecnumber/arch/vax/gstdint.h 2016/03/24 00:38:40 1.4
@@ -1,51 +1,51 @@ @@ -1,51 +1,51 @@
1/* This file is automatically generated. DO NOT EDIT! */ 1/* This file is automatically generated. DO NOT EDIT! */
2/* Generated from: NetBSD: mknative-gdb,v 1.6 2013/10/03 18:58:37 christos Exp */ 2/* Generated from: NetBSD: mknative-gdb,v 1.6 2013/10/03 18:58:37 christos Exp */
3/* Generated from: NetBSD: mknative.common,v 1.11 2014/02/17 21:39:43 christos Exp */ 3/* Generated from: NetBSD: mknative.common,v 1.11 2014/02/17 21:39:43 christos Exp */
4 4
5/* generated for vax--netbsdelf-gcc (NetBSD nb1 20141012) 4.8.4 20141009 (prerelease) */ 5/* generated for vax--netbsdelf-gcc (NetBSD nb1 20160317) 5.3.0 */
6 6
7#ifndef GCC_GENERATED_STDINT_H 7#ifndef GCC_GENERATED_STDINT_H
8#define GCC_GENERATED_STDINT_H 1 8#define GCC_GENERATED_STDINT_H 1
9 9
10#include <sys/types.h> 10#include <sys/types.h>
11#include <stdint.h> 11#include <stdint.h>
12/* glibc uses these symbols as guards to prevent redefinitions. */ 12/* glibc uses these symbols as guards to prevent redefinitions. */
13#ifdef __int8_t_defined 13#ifdef __int8_t_defined
14#define _INT8_T 14#define _INT8_T
15#define _INT16_T 15#define _INT16_T
16#define _INT32_T 16#define _INT32_T
17#endif 17#endif
18#ifdef __uint32_t_defined 18#ifdef __uint32_t_defined
19#define _UINT32_T 19#define _UINT32_T
20#endif 20#endif
21 21
22 22
23/* Some systems have guard macros to prevent redefinitions, define them. */ 23/* Some systems have guard macros to prevent redefinitions, define them. */
24#ifndef _INT8_T 24#ifndef _INT8_T
25#define _INT8_T 25#define _INT8_T
26#endif 26#endif
27#ifndef _INT16_T 27#ifndef _INT16_T
28#define _INT16_T 28#define _INT16_T
29#endif 29#endif
30#ifndef _INT32_T 30#ifndef _INT32_T
31#define _INT32_T 31#define _INT32_T
32#endif 32#endif
33#ifndef _UINT8_T 33#ifndef _UINT8_T
34#define _UINT8_T 34#define _UINT8_T
35#endif 35#endif
36#ifndef _UINT16_T 36#ifndef _UINT16_T
37#define _UINT16_T 37#define _UINT16_T
38#endif 38#endif
39#ifndef _UINT32_T 39#ifndef _UINT32_T
40#define _UINT32_T 40#define _UINT32_T
41#endif 41#endif
42 42
43/* system headers have good uint64_t and int64_t */ 43/* system headers have good uint64_t and int64_t */
44#ifndef _INT64_T 44#ifndef _INT64_T
45#define _INT64_T 45#define _INT64_T
46#endif 46#endif
47#ifndef _UINT64_T 47#ifndef _UINT64_T
48#define _UINT64_T 48#define _UINT64_T
49#endif 49#endif
50 50
51#endif /* GCC_GENERATED_STDINT_H */ 51#endif /* GCC_GENERATED_STDINT_H */

cvs diff -r1.5 -r1.6 src/external/gpl3/gdb/lib/libgdb/arch/vax/config.h (switch to unified diff)

--- src/external/gpl3/gdb/lib/libgdb/arch/vax/config.h 2016/02/03 22:13:42 1.5
+++ src/external/gpl3/gdb/lib/libgdb/arch/vax/config.h 2016/03/24 00:38:40 1.6
@@ -1,825 +1,825 @@ @@ -1,825 +1,825 @@
1/* This file is automatically generated. DO NOT EDIT! */ 1/* This file is automatically generated. DO NOT EDIT! */
2/* Generated from: NetBSD: mknative-gdb,v 1.6 2013/10/03 18:58:37 christos Exp */ 2/* Generated from: NetBSD: mknative-gdb,v 1.6 2013/10/03 18:58:37 christos Exp */
3/* Generated from: NetBSD: mknative.common,v 1.11 2014/02/17 21:39:43 christos Exp */ 3/* Generated from: NetBSD: mknative.common,v 1.11 2014/02/17 21:39:43 christos Exp */
4 4
5/* config.h. Generated from config.in by configure. */ 5/* config.h. Generated from config.in by configure. */
6/* config.in. Generated from configure.ac by autoheader. */ 6/* config.in. Generated from configure.ac by autoheader. */
7 7
8/* Define if building universal (internal helper macro) */ 8/* Define if building universal (internal helper macro) */
9/* #undef AC_APPLE_UNIVERSAL_BUILD */ 9/* #undef AC_APPLE_UNIVERSAL_BUILD */
10 10
11/* Directories from which to load auto-loaded scripts. */ 11/* Directories from which to load auto-loaded scripts. */
12#define AUTO_LOAD_DIR ":${prefix}/share/auto-load" 12#define AUTO_LOAD_DIR ":${prefix}/share/auto-load"
13 13
14/* Directories safe to hold auto-loaded files. */ 14/* Directories safe to hold auto-loaded files. */
15#define AUTO_LOAD_SAFE_PATH ":${prefix}/share/auto-load" 15#define AUTO_LOAD_SAFE_PATH ":${prefix}/share/auto-load"
16 16
17/* Directory of programs. */ 17/* Directory of programs. */
18#define BINDIR "/usr/bin" 18#define BINDIR "/usr/bin"
19 19
20/* Define to one of `_getb67', `GETB67', `getb67' for Cray-2 and Cray-YMP 20/* Define to one of `_getb67', `GETB67', `getb67' for Cray-2 and Cray-YMP
21 systems. This function is required for `alloca.c' support on those systems. 21 systems. This function is required for `alloca.c' support on those systems.
22 */ 22 */
23/* #undef CRAY_STACKSEG_END */ 23/* #undef CRAY_STACKSEG_END */
24 24
25/* Define to 1 if using `alloca.c'. */ 25/* Define to 1 if using `alloca.c'. */
26/* #undef C_ALLOCA */ 26/* #undef C_ALLOCA */
27 27
28/* look for global separate debug info in this path [LIBDIR/debug] */ 28/* look for global separate debug info in this path [LIBDIR/debug] */
29#define DEBUGDIR "/usr/libdata/debug" 29#define DEBUGDIR "/usr/libdata/debug"
30 30
31/* Define if the separate-debug-dir directory should be relocated when GDB is 31/* Define if the separate-debug-dir directory should be relocated when GDB is
32 moved. */ 32 moved. */
33#define DEBUGDIR_RELOCATABLE 1 33#define DEBUGDIR_RELOCATABLE 1
34 34
35/* Define to BFD's default architecture. */ 35/* Define to BFD's default architecture. */
36#define DEFAULT_BFD_ARCH bfd_vax_arch 36#define DEFAULT_BFD_ARCH bfd_vax_arch
37 37
38/* Define to BFD's default target vector. */ 38/* Define to BFD's default target vector. */
39#define DEFAULT_BFD_VEC vax_elf32_vec 39#define DEFAULT_BFD_VEC vax_elf32_vec
40 40
41/* Define to 1 if translation of program messages to the user's native 41/* Define to 1 if translation of program messages to the user's native
42 language is requested. */ 42 language is requested. */
43#define ENABLE_NLS 1 43#define ENABLE_NLS 1
44 44
45/* The .gdbinit filename. */ 45/* The .gdbinit filename. */
46#define GDBINIT ".gdbinit" 46#define GDBINIT ".gdbinit"
47 47
48/* look for global separate data files in this path [DATADIR/gdb] */ 48/* look for global separate data files in this path [DATADIR/gdb] */
49#define GDB_DATADIR "/usr/share/gdb" 49#define GDB_DATADIR "/usr/share/gdb"
50 50
51/* Define if the gdb-datadir directory should be relocated when GDB is moved. 51/* Define if the gdb-datadir directory should be relocated when GDB is moved.
52 */ 52 */
53#define GDB_DATADIR_RELOCATABLE 1 53#define GDB_DATADIR_RELOCATABLE 1
54 54
55/* Define to be a string naming the default host character set. */ 55/* Define to be a string naming the default host character set. */
56#define GDB_DEFAULT_HOST_CHARSET "UTF-8" 56#define GDB_DEFAULT_HOST_CHARSET "UTF-8"
57 57
58/* Host double floatformat */ 58/* Host double floatformat */
59#define GDB_HOST_DOUBLE_FORMAT 0 59#define GDB_HOST_DOUBLE_FORMAT 0
60 60
61/* Host float floatformat */ 61/* Host float floatformat */
62#define GDB_HOST_FLOAT_FORMAT 0 62#define GDB_HOST_FLOAT_FORMAT 0
63 63
64/* Host long double floatformat */ 64/* Host long double floatformat */
65#define GDB_HOST_LONG_DOUBLE_FORMAT 0 65#define GDB_HOST_LONG_DOUBLE_FORMAT 0
66 66
67/* nativefile */ 67/* nativefile */
68/* #undef GDB_NM_FILE */ 68/* #undef GDB_NM_FILE */
69 69
70/* Define to the default OS ABI for this configuration. */ 70/* Define to the default OS ABI for this configuration. */
71/* #undef GDB_OSABI_DEFAULT */ 71/* #undef GDB_OSABI_DEFAULT */
72 72
73/* Define to 1 if you have `alloca', as a function or macro. */ 73/* Define to 1 if you have `alloca', as a function or macro. */
74#define HAVE_ALLOCA 1 74#define HAVE_ALLOCA 1
75 75
76/* Define to 1 if you have <alloca.h> and it should be used (not on Ultrix). 76/* Define to 1 if you have <alloca.h> and it should be used (not on Ultrix).
77 */ 77 */
78/* #undef HAVE_ALLOCA_H */ 78/* #undef HAVE_ALLOCA_H */
79 79
80/* Define to 1 if you have the `btowc' function. */ 80/* Define to 1 if you have the `btowc' function. */
81#define HAVE_BTOWC 1 81#define HAVE_BTOWC 1
82 82
83/* Define to 1 if you have the <cursesX.h> header file. */ 83/* Define to 1 if you have the <cursesX.h> header file. */
84/* #undef HAVE_CURSESX_H */ 84/* #undef HAVE_CURSESX_H */
85 85
86/* Define to 1 if you have the <curses.h> header file. */ 86/* Define to 1 if you have the <curses.h> header file. */
87#define HAVE_CURSES_H 1 87#define HAVE_CURSES_H 1
88 88
89/* Define to 1 if you have the declaration of `ADDR_NO_RANDOMIZE', and to 0 if 89/* Define to 1 if you have the declaration of `ADDR_NO_RANDOMIZE', and to 0 if
90 you don't. */ 90 you don't. */
91#define HAVE_DECL_ADDR_NO_RANDOMIZE 0 91#define HAVE_DECL_ADDR_NO_RANDOMIZE 0
92 92
93/* Define to 1 if you have the declaration of `asprintf', and to 0 if you 93/* Define to 1 if you have the declaration of `asprintf', and to 0 if you
94 don't. */ 94 don't. */
95#define HAVE_DECL_ASPRINTF 1 95#define HAVE_DECL_ASPRINTF 1
96 96
97/* Define to 1 if you have the declaration of `basename(char *)', and to 0 if 97/* Define to 1 if you have the declaration of `basename(char *)', and to 0 if
98 you don't. */ 98 you don't. */
99#define HAVE_DECL_BASENAME 0 99#define HAVE_DECL_BASENAME 0
100 100
101/* Define to 1 if you have the declaration of `ffs', and to 0 if you don't. */ 101/* Define to 1 if you have the declaration of `ffs', and to 0 if you don't. */
102#define HAVE_DECL_FFS 1 102#define HAVE_DECL_FFS 1
103 103
104/* Define to 1 if you have the declaration of `free', and to 0 if you don't. 104/* Define to 1 if you have the declaration of `free', and to 0 if you don't.
105 */ 105 */
106#define HAVE_DECL_FREE 1 106#define HAVE_DECL_FREE 1
107 107
108/* Define to 1 if you have the declaration of `getthrds', and to 0 if you 108/* Define to 1 if you have the declaration of `getthrds', and to 0 if you
109 don't. */ 109 don't. */
110/* #undef HAVE_DECL_GETTHRDS */ 110/* #undef HAVE_DECL_GETTHRDS */
111 111
112/* Define to 1 if you have the declaration of `malloc', and to 0 if you don't. 112/* Define to 1 if you have the declaration of `malloc', and to 0 if you don't.
113 */ 113 */
114#define HAVE_DECL_MALLOC 1 114#define HAVE_DECL_MALLOC 1
115 115
116/* Define to 1 if you have the declaration of `ptrace', and to 0 if you don't. 116/* Define to 1 if you have the declaration of `ptrace', and to 0 if you don't.
117 */ 117 */
118#define HAVE_DECL_PTRACE 1 118#define HAVE_DECL_PTRACE 1
119 119
120/* Define to 1 if you have the declaration of `realloc', and to 0 if you 120/* Define to 1 if you have the declaration of `realloc', and to 0 if you
121 don't. */ 121 don't. */
122#define HAVE_DECL_REALLOC 1 122#define HAVE_DECL_REALLOC 1
123 123
124/* Define to 1 if you have the declaration of `snprintf', and to 0 if you 124/* Define to 1 if you have the declaration of `snprintf', and to 0 if you
125 don't. */ 125 don't. */
126#define HAVE_DECL_SNPRINTF 1 126#define HAVE_DECL_SNPRINTF 1
127 127
128/* Define to 1 if you have the declaration of `strerror', and to 0 if you 128/* Define to 1 if you have the declaration of `strerror', and to 0 if you
129 don't. */ 129 don't. */
130#define HAVE_DECL_STRERROR 1 130#define HAVE_DECL_STRERROR 1
131 131
132/* Define to 1 if you have the declaration of `strstr', and to 0 if you don't. 132/* Define to 1 if you have the declaration of `strstr', and to 0 if you don't.
133 */ 133 */
134#define HAVE_DECL_STRSTR 1 134#define HAVE_DECL_STRSTR 1
135 135
136/* Define to 1 if you have the declaration of `strtol', and to 0 if you don't. 136/* Define to 1 if you have the declaration of `strtol', and to 0 if you don't.
137 */ 137 */
138#define HAVE_DECL_STRTOL 1 138#define HAVE_DECL_STRTOL 1
139 139
140/* Define to 1 if you have the declaration of `strtoll', and to 0 if you 140/* Define to 1 if you have the declaration of `strtoll', and to 0 if you
141 don't. */ 141 don't. */
142#define HAVE_DECL_STRTOLL 1 142#define HAVE_DECL_STRTOLL 1
143 143
144/* Define to 1 if you have the declaration of `strtoul', and to 0 if you 144/* Define to 1 if you have the declaration of `strtoul', and to 0 if you
145 don't. */ 145 don't. */
146#define HAVE_DECL_STRTOUL 1 146#define HAVE_DECL_STRTOUL 1
147 147
148/* Define to 1 if you have the declaration of `strtoull', and to 0 if you 148/* Define to 1 if you have the declaration of `strtoull', and to 0 if you
149 don't. */ 149 don't. */
150#define HAVE_DECL_STRTOULL 1 150#define HAVE_DECL_STRTOULL 1
151 151
152/* Define to 1 if you have the declaration of `strverscmp', and to 0 if you 152/* Define to 1 if you have the declaration of `strverscmp', and to 0 if you
153 don't. */ 153 don't. */
154#define HAVE_DECL_STRVERSCMP 0 154#define HAVE_DECL_STRVERSCMP 0
155 155
156/* Define to 1 if you have the declaration of `vasprintf', and to 0 if you 156/* Define to 1 if you have the declaration of `vasprintf', and to 0 if you
157 don't. */ 157 don't. */
158#define HAVE_DECL_VASPRINTF 1 158#define HAVE_DECL_VASPRINTF 1
159 159
160/* Define to 1 if you have the declaration of `vsnprintf', and to 0 if you 160/* Define to 1 if you have the declaration of `vsnprintf', and to 0 if you
161 don't. */ 161 don't. */
162#define HAVE_DECL_VSNPRINTF 1 162#define HAVE_DECL_VSNPRINTF 1
163 163
164/* Define to 1 if you have the <dlfcn.h> header file. */ 164/* Define to 1 if you have the <dlfcn.h> header file. */
165#define HAVE_DLFCN_H 1 165#define HAVE_DLFCN_H 1
166 166
167/* Define if ELF support should be included. */ 167/* Define if ELF support should be included. */
168#define HAVE_ELF 1 168#define HAVE_ELF 1
169 169
170/* Define to 1 if you have the <elf_hp.h> header file. */ 170/* Define to 1 if you have the <elf_hp.h> header file. */
171/* #undef HAVE_ELF_HP_H */ 171/* #undef HAVE_ELF_HP_H */
172 172
173/* Define to 1 if your system has the etext variable. */ 173/* Define to 1 if your system has the etext variable. */
174#define HAVE_ETEXT 1 174#define HAVE_ETEXT 1
175 175
176/* Define to 1 if you have the `fdwalk' function. */ 176/* Define to 1 if you have the `fdwalk' function. */
177/* #undef HAVE_FDWALK */ 177/* #undef HAVE_FDWALK */
178 178
179/* Define to 1 if you have the `fork' function. */ 179/* Define to 1 if you have the `fork' function. */
180#define HAVE_FORK 1 180#define HAVE_FORK 1
181 181
182/* Define if <sys/procfs.h> has fpregset_t. */ 182/* Define if <sys/procfs.h> has fpregset_t. */
183/* #undef HAVE_FPREGSET_T */ 183/* #undef HAVE_FPREGSET_T */
184 184
185/* Define to 1 if you have the `getauxval' function. */ 185/* Define to 1 if you have the `getauxval' function. */
186/* #undef HAVE_GETAUXVAL */ 186/* #undef HAVE_GETAUXVAL */
187 187
188/* Define to 1 if you have the `getgid' function. */ 188/* Define to 1 if you have the `getgid' function. */
189#define HAVE_GETGID 1 189#define HAVE_GETGID 1
190 190
191/* Define to 1 if you have the `getpagesize' function. */ 191/* Define to 1 if you have the `getpagesize' function. */
192#define HAVE_GETPAGESIZE 1 192#define HAVE_GETPAGESIZE 1
193 193
194/* Define to 1 if you have the `getrlimit' function. */ 194/* Define to 1 if you have the `getrlimit' function. */
195#define HAVE_GETRLIMIT 1 195#define HAVE_GETRLIMIT 1
196 196
197/* Define to 1 if you have the `getrusage' function. */ 197/* Define to 1 if you have the `getrusage' function. */
198#define HAVE_GETRUSAGE 1 198#define HAVE_GETRUSAGE 1
199 199
200/* Define to 1 if you have the `getuid' function. */ 200/* Define to 1 if you have the `getuid' function. */
201#define HAVE_GETUID 1 201#define HAVE_GETUID 1
202 202
203/* Define if <sys/procfs.h> has gregset_t. */ 203/* Define if <sys/procfs.h> has gregset_t. */
204/* #undef HAVE_GREGSET_T */ 204/* #undef HAVE_GREGSET_T */
205 205
206/* Define if Guile interpreter is being linked in. */ 206/* Define if Guile interpreter is being linked in. */
207/* #undef HAVE_GUILE */ 207/* #undef HAVE_GUILE */
208 208
209/* Define if Guile supports manual finalization. */ 209/* Define if Guile supports manual finalization. */
210/* #undef HAVE_GUILE_MANUAL_FINALIZATION */ 210/* #undef HAVE_GUILE_MANUAL_FINALIZATION */
211 211
212/* Define if you have the iconv() function. */ 212/* Define if you have the iconv() function. */
213#define HAVE_ICONV 1 213#define HAVE_ICONV 1
214 214
215/* Define to 1 if you have the `iconvlist' function. */ 215/* Define to 1 if you have the `iconvlist' function. */
216/* #undef HAVE_ICONVLIST */ 216/* #undef HAVE_ICONVLIST */
217 217
218/* Define to 1 if you have the <inttypes.h> header file. */ 218/* Define to 1 if you have the <inttypes.h> header file. */
219#define HAVE_INTTYPES_H 1 219#define HAVE_INTTYPES_H 1
220 220
221/* Define to 1 if your system has the kinfo_getvmmap function. */ 221/* Define to 1 if your system has the kinfo_getvmmap function. */
222/* #undef HAVE_KINFO_GETVMMAP */ 222#define HAVE_KINFO_GETVMMAP 1
223 223
224/* Define if you have <langinfo.h> and nl_langinfo(CODESET). */ 224/* Define if you have <langinfo.h> and nl_langinfo(CODESET). */
225#define HAVE_LANGINFO_CODESET 1 225#define HAVE_LANGINFO_CODESET 1
226 226
227/* Define if your <locale.h> file defines LC_MESSAGES. */ 227/* Define if your <locale.h> file defines LC_MESSAGES. */
228#define HAVE_LC_MESSAGES 1 228#define HAVE_LC_MESSAGES 1
229 229
230/* Define if you have the babeltrace library. */ 230/* Define if you have the babeltrace library. */
231/* #undef HAVE_LIBBABELTRACE */ 231/* #undef HAVE_LIBBABELTRACE */
232 232
233/* Define to 1 if you have the `dl' library (-ldl). */ 233/* Define to 1 if you have the `dl' library (-ldl). */
234/* #undef HAVE_LIBDL */ 234/* #undef HAVE_LIBDL */
235 235
236/* Define if you have the expat library. */ 236/* Define if you have the expat library. */
237/* #undef HAVE_LIBEXPAT */ 237/* #undef HAVE_LIBEXPAT */
238 238
239/* Define to 1 if you have the `libiconvlist' function. */ 239/* Define to 1 if you have the `libiconvlist' function. */
240/* #undef HAVE_LIBICONVLIST */ 240/* #undef HAVE_LIBICONVLIST */
241 241
242/* Define if you have the ipt library. */ 242/* Define if you have the ipt library. */
243/* #undef HAVE_LIBIPT */ 243/* #undef HAVE_LIBIPT */
244 244
245/* Define if you have the lzma library. */ 245/* Define if you have the lzma library. */
246/* #undef HAVE_LIBLZMA */ 246/* #undef HAVE_LIBLZMA */
247 247
248/* Define to 1 if you have the `m' library (-lm). */ 248/* Define to 1 if you have the `m' library (-lm). */
249#define HAVE_LIBM 1 249#define HAVE_LIBM 1
250 250
251/* Define to 1 if you have the `mcheck' library (-lmcheck). */ 251/* Define to 1 if you have the `mcheck' library (-lmcheck). */
252/* #undef HAVE_LIBMCHECK */ 252/* #undef HAVE_LIBMCHECK */
253 253
254/* Define if Python 2.4 is being used. */ 254/* Define if Python 2.4 is being used. */
255/* #undef HAVE_LIBPYTHON2_4 */ 255/* #undef HAVE_LIBPYTHON2_4 */
256 256
257/* Define if Python 2.5 is being used. */ 257/* Define if Python 2.5 is being used. */
258/* #undef HAVE_LIBPYTHON2_5 */ 258/* #undef HAVE_LIBPYTHON2_5 */
259 259
260/* Define if Python 2.6 is being used. */ 260/* Define if Python 2.6 is being used. */
261/* #undef HAVE_LIBPYTHON2_6 */ 261/* #undef HAVE_LIBPYTHON2_6 */
262 262
263/* Define if Python 2.7 is being used. */ 263/* Define if Python 2.7 is being used. */
264/* #undef HAVE_LIBPYTHON2_7 */ 264/* #undef HAVE_LIBPYTHON2_7 */
265 265
266/* Define to 1 if you have the <libunwind-ia64.h> header file. */ 266/* Define to 1 if you have the <libunwind-ia64.h> header file. */
267/* #undef HAVE_LIBUNWIND_IA64_H */ 267/* #undef HAVE_LIBUNWIND_IA64_H */
268 268
269/* Define to 1 if you have the `w' library (-lw). */ 269/* Define to 1 if you have the `w' library (-lw). */
270/* #undef HAVE_LIBW */ 270/* #undef HAVE_LIBW */
271 271
272/* Define to 1 if you have the <linux/perf_event.h> header file. */ 272/* Define to 1 if you have the <linux/perf_event.h> header file. */
273/* #undef HAVE_LINUX_PERF_EVENT_H */ 273/* #undef HAVE_LINUX_PERF_EVENT_H */
274 274
275/* Define to 1 if you have the <locale.h> header file. */ 275/* Define to 1 if you have the <locale.h> header file. */
276#define HAVE_LOCALE_H 1 276#define HAVE_LOCALE_H 1
277 277
278/* Define to 1 if the compiler supports long double. */ 278/* Define to 1 if the compiler supports long double. */
279#define HAVE_LONG_DOUBLE 1 279#define HAVE_LONG_DOUBLE 1
280 280
281/* Define to 1 if the system has the type `long long'. */ 281/* Define to 1 if the system has the type `long long'. */
282#define HAVE_LONG_LONG 1 282#define HAVE_LONG_LONG 1
283 283
284/* Define if <sys/procfs.h> has lwpid_t. */ 284/* Define if <sys/procfs.h> has lwpid_t. */
285/* #undef HAVE_LWPID_T */ 285/* #undef HAVE_LWPID_T */
286 286
287/* Define to 1 if you have the <machine/reg.h> header file. */ 287/* Define to 1 if you have the <machine/reg.h> header file. */
288#define HAVE_MACHINE_REG_H 1 288#define HAVE_MACHINE_REG_H 1
289 289
290/* Define to 1 if you have the <memory.h> header file. */ 290/* Define to 1 if you have the <memory.h> header file. */
291#define HAVE_MEMORY_H 1 291#define HAVE_MEMORY_H 1
292 292
293/* Define to 1 if you have the `mkdtemp' function. */ 293/* Define to 1 if you have the `mkdtemp' function. */
294#define HAVE_MKDTEMP 1 294#define HAVE_MKDTEMP 1
295 295
296/* Define to 1 if you have a working `mmap' system call. */ 296/* Define to 1 if you have a working `mmap' system call. */
297#define HAVE_MMAP 1 297#define HAVE_MMAP 1
298 298
299/* Define to 1 if you have the `monstartup' function. */ 299/* Define to 1 if you have the `monstartup' function. */
300#define HAVE_MONSTARTUP 1 300#define HAVE_MONSTARTUP 1
301 301
302/* Define to 1 if you have the <ncurses.h> header file. */ 302/* Define to 1 if you have the <ncurses.h> header file. */
303/* #undef HAVE_NCURSES_H */ 303/* #undef HAVE_NCURSES_H */
304 304
305/* Define to 1 if you have the <ncurses/ncurses.h> header file. */ 305/* Define to 1 if you have the <ncurses/ncurses.h> header file. */
306/* #undef HAVE_NCURSES_NCURSES_H */ 306/* #undef HAVE_NCURSES_NCURSES_H */
307 307
308/* Define to 1 if you have the <ncurses/term.h> header file. */ 308/* Define to 1 if you have the <ncurses/term.h> header file. */
309/* #undef HAVE_NCURSES_TERM_H */ 309/* #undef HAVE_NCURSES_TERM_H */
310 310
311/* Define to 1 if you have the <nlist.h> header file. */ 311/* Define to 1 if you have the <nlist.h> header file. */
312#define HAVE_NLIST_H 1 312#define HAVE_NLIST_H 1
313 313
314/* Define if you support the personality syscall. */ 314/* Define if you support the personality syscall. */
315/* #undef HAVE_PERSONALITY */ 315/* #undef HAVE_PERSONALITY */
316 316
317/* Define to 1 if you have the `pipe' function. */ 317/* Define to 1 if you have the `pipe' function. */
318#define HAVE_PIPE 1 318#define HAVE_PIPE 1
319 319
320/* Define to 1 if you have the `pipe2' function. */ 320/* Define to 1 if you have the `pipe2' function. */
321#define HAVE_PIPE2 1 321#define HAVE_PIPE2 1
322 322
323/* Define to 1 if you have the `poll' function. */ 323/* Define to 1 if you have the `poll' function. */
324#define HAVE_POLL 1 324#define HAVE_POLL 1
325 325
326/* Define to 1 if you have the <poll.h> header file. */ 326/* Define to 1 if you have the <poll.h> header file. */
327#define HAVE_POLL_H 1 327#define HAVE_POLL_H 1
328 328
329/* Define to 1 if you have the `posix_madvise' function. */ 329/* Define to 1 if you have the `posix_madvise' function. */
330#define HAVE_POSIX_MADVISE 1 330#define HAVE_POSIX_MADVISE 1
331 331
332/* Define to 1 if you have the `pread' function. */ 332/* Define to 1 if you have the `pread' function. */
333#define HAVE_PREAD 1 333#define HAVE_PREAD 1
334 334
335/* Define to 1 if you have the `pread64' function. */ 335/* Define to 1 if you have the `pread64' function. */
336/* #undef HAVE_PREAD64 */ 336/* #undef HAVE_PREAD64 */
337 337
338/* Define if <sys/procfs.h> has prfpregset_t. */ 338/* Define if <sys/procfs.h> has prfpregset_t. */
339/* #undef HAVE_PRFPREGSET_T */ 339/* #undef HAVE_PRFPREGSET_T */
340 340
341/* Define if <sys/procfs.h> has prgregset32_t. */ 341/* Define if <sys/procfs.h> has prgregset32_t. */
342/* #undef HAVE_PRGREGSET32_T */ 342/* #undef HAVE_PRGREGSET32_T */
343 343
344/* Define if <sys/procfs.h> has prgregset_t. */ 344/* Define if <sys/procfs.h> has prgregset_t. */
345/* #undef HAVE_PRGREGSET_T */ 345/* #undef HAVE_PRGREGSET_T */
346 346
347/* Define to 1 if you have the <proc_service.h> header file. */ 347/* Define to 1 if you have the <proc_service.h> header file. */
348/* #undef HAVE_PROC_SERVICE_H */ 348/* #undef HAVE_PROC_SERVICE_H */
349 349
350/* Define if <sys/procfs.h> has prsysent_t. */ 350/* Define if <sys/procfs.h> has prsysent_t. */
351/* #undef HAVE_PRSYSENT_T */ 351/* #undef HAVE_PRSYSENT_T */
352 352
353/* Define if <sys/procfs.h> has pr_sigaction64_t. */ 353/* Define if <sys/procfs.h> has pr_sigaction64_t. */
354/* #undef HAVE_PR_SIGACTION64_T */ 354/* #undef HAVE_PR_SIGACTION64_T */
355 355
356/* Define if <sys/procfs.h> has pr_siginfo64_t. */ 356/* Define if <sys/procfs.h> has pr_siginfo64_t. */
357/* #undef HAVE_PR_SIGINFO64_T */ 357/* #undef HAVE_PR_SIGINFO64_T */
358 358
359/* Define if <sys/procfs.h> has pr_sigset_t. */ 359/* Define if <sys/procfs.h> has pr_sigset_t. */
360/* #undef HAVE_PR_SIGSET_T */ 360/* #undef HAVE_PR_SIGSET_T */
361 361
362/* Define if <sys/procfs.h> has psaddr_t. */ 362/* Define if <sys/procfs.h> has psaddr_t. */
363/* #undef HAVE_PSADDR_T */ 363/* #undef HAVE_PSADDR_T */
364 364
365/* Define to 1 if you have the `ptrace64' function. */ 365/* Define to 1 if you have the `ptrace64' function. */
366/* #undef HAVE_PTRACE64 */ 366/* #undef HAVE_PTRACE64 */
367 367
368/* Define if sys/ptrace.h defines the PTRACE_GETFPXREGS request. */ 368/* Define if sys/ptrace.h defines the PTRACE_GETFPXREGS request. */
369/* #undef HAVE_PTRACE_GETFPXREGS */ 369/* #undef HAVE_PTRACE_GETFPXREGS */
370 370
371/* Define if sys/ptrace.h defines the PTRACE_GETREGS request. */ 371/* Define if sys/ptrace.h defines the PTRACE_GETREGS request. */
372/* #undef HAVE_PTRACE_GETREGS */ 372/* #undef HAVE_PTRACE_GETREGS */
373 373
374/* Define to 1 if you have the <ptrace.h> header file. */ 374/* Define to 1 if you have the <ptrace.h> header file. */
375/* #undef HAVE_PTRACE_H */ 375/* #undef HAVE_PTRACE_H */
376 376
377/* Define if sys/ptrace.h defines the PT_GETDBREGS request. */ 377/* Define if sys/ptrace.h defines the PT_GETDBREGS request. */
378/* #undef HAVE_PT_GETDBREGS */ 378/* #undef HAVE_PT_GETDBREGS */
379 379
380/* Define if sys/ptrace.h defines the PT_GETXMMREGS request. */ 380/* Define if sys/ptrace.h defines the PT_GETXMMREGS request. */
381/* #undef HAVE_PT_GETXMMREGS */ 381/* #undef HAVE_PT_GETXMMREGS */
382 382
383/* Define to 1 if you have the `pwrite' function. */ 383/* Define to 1 if you have the `pwrite' function. */
384#define HAVE_PWRITE 1 384#define HAVE_PWRITE 1
385 385
386/* Define if Python interpreter is being linked in. */ 386/* Define if Python interpreter is being linked in. */
387/* #undef HAVE_PYTHON */ 387/* #undef HAVE_PYTHON */
388 388
389/* Define to 1 if you have the `resize_term' function. */ 389/* Define to 1 if you have the `resize_term' function. */
390/* #undef HAVE_RESIZE_TERM */ 390/* #undef HAVE_RESIZE_TERM */
391 391
392/* Define to 1 if you have the `sbrk' function. */ 392/* Define to 1 if you have the `sbrk' function. */
393#define HAVE_SBRK 1 393#define HAVE_SBRK 1
394 394
395/* Define to 1 if you have the `scm_new_smob' function. */ 395/* Define to 1 if you have the `scm_new_smob' function. */
396/* #undef HAVE_SCM_NEW_SMOB */ 396/* #undef HAVE_SCM_NEW_SMOB */
397 397
398/* Define to 1 if you have the `setlocale' function. */ 398/* Define to 1 if you have the `setlocale' function. */
399#define HAVE_SETLOCALE 1 399#define HAVE_SETLOCALE 1
400 400
401/* Define to 1 if you have the `setns' function. */ 401/* Define to 1 if you have the `setns' function. */
402/* #undef HAVE_SETNS */ 402/* #undef HAVE_SETNS */
403 403
404/* Define to 1 if you have the `setpgid' function. */ 404/* Define to 1 if you have the `setpgid' function. */
405#define HAVE_SETPGID 1 405#define HAVE_SETPGID 1
406 406
407/* Define to 1 if you have the `setpgrp' function. */ 407/* Define to 1 if you have the `setpgrp' function. */
408#define HAVE_SETPGRP 1 408#define HAVE_SETPGRP 1
409 409
410/* Define to 1 if you have the `setrlimit' function. */ 410/* Define to 1 if you have the `setrlimit' function. */
411#define HAVE_SETRLIMIT 1 411#define HAVE_SETRLIMIT 1
412 412
413/* Define to 1 if you have the `setsid' function. */ 413/* Define to 1 if you have the `setsid' function. */
414#define HAVE_SETSID 1 414#define HAVE_SETSID 1
415 415
416/* Define to 1 if you have the <sgtty.h> header file. */ 416/* Define to 1 if you have the <sgtty.h> header file. */
417#define HAVE_SGTTY_H 1 417#define HAVE_SGTTY_H 1
418 418
419/* Define to 1 if you have the `sigaction' function. */ 419/* Define to 1 if you have the `sigaction' function. */
420#define HAVE_SIGACTION 1 420#define HAVE_SIGACTION 1
421 421
422/* Define to 1 if you have the `sigaltstack' function. */ 422/* Define to 1 if you have the `sigaltstack' function. */
423#define HAVE_SIGALTSTACK 1 423#define HAVE_SIGALTSTACK 1
424 424
425/* Define to 1 if you have the <signal.h> header file. */ 425/* Define to 1 if you have the <signal.h> header file. */
426#define HAVE_SIGNAL_H 1 426#define HAVE_SIGNAL_H 1
427 427
428/* Define to 1 if you have the `sigprocmask' function. */ 428/* Define to 1 if you have the `sigprocmask' function. */
429#define HAVE_SIGPROCMASK 1 429#define HAVE_SIGPROCMASK 1
430 430
431/* Define if sigsetjmp is available. */ 431/* Define if sigsetjmp is available. */
432#define HAVE_SIGSETJMP 1 432#define HAVE_SIGSETJMP 1
433 433
434/* Define to 1 if you have the `sigsetmask' function. */ 434/* Define to 1 if you have the `sigsetmask' function. */
435#define HAVE_SIGSETMASK 1 435#define HAVE_SIGSETMASK 1
436 436
437/* Define to 1 if you have the `socketpair' function. */ 437/* Define to 1 if you have the `socketpair' function. */
438#define HAVE_SOCKETPAIR 1 438#define HAVE_SOCKETPAIR 1
439 439
440/* Define to 1 if the system has the type `socklen_t'. */ 440/* Define to 1 if the system has the type `socklen_t'. */
441#define HAVE_SOCKLEN_T 1 441#define HAVE_SOCKLEN_T 1
442 442
443/* Define to 1 if you have the <stdint.h> header file. */ 443/* Define to 1 if you have the <stdint.h> header file. */
444#define HAVE_STDINT_H 1 444#define HAVE_STDINT_H 1
445 445
446/* Define to 1 if you have the <stdlib.h> header file. */ 446/* Define to 1 if you have the <stdlib.h> header file. */
447#define HAVE_STDLIB_H 1 447#define HAVE_STDLIB_H 1
448 448
449/* Define to 1 if you have the <strings.h> header file. */ 449/* Define to 1 if you have the <strings.h> header file. */
450#define HAVE_STRINGS_H 1 450#define HAVE_STRINGS_H 1
451 451
452/* Define to 1 if you have the <string.h> header file. */ 452/* Define to 1 if you have the <string.h> header file. */
453#define HAVE_STRING_H 1 453#define HAVE_STRING_H 1
454 454
455/* Define to 1 if your system has struct lwp. */ 455/* Define to 1 if your system has struct lwp. */
456#define HAVE_STRUCT_LWP 1 456#define HAVE_STRUCT_LWP 1
457 457
458/* Define to 1 if your system has struct reg in <machine/reg.h>. */ 458/* Define to 1 if your system has struct reg in <machine/reg.h>. */
459#define HAVE_STRUCT_REG 1 459#define HAVE_STRUCT_REG 1
460 460
461/* Define to 1 if `struct reg' is a member of `r_fs'. */ 461/* Define to 1 if `struct reg' is a member of `r_fs'. */
462/* #undef HAVE_STRUCT_REG_R_FS */ 462/* #undef HAVE_STRUCT_REG_R_FS */
463 463
464/* Define to 1 if `struct reg' is a member of `r_gs'. */ 464/* Define to 1 if `struct reg' is a member of `r_gs'. */
465/* #undef HAVE_STRUCT_REG_R_GS */ 465/* #undef HAVE_STRUCT_REG_R_GS */
466 466
467/* Define to 1 if `struct stat' is a member of `st_blksize'. */ 467/* Define to 1 if `struct stat' is a member of `st_blksize'. */
468#define HAVE_STRUCT_STAT_ST_BLKSIZE 1 468#define HAVE_STRUCT_STAT_ST_BLKSIZE 1
469 469
470/* Define to 1 if `struct stat' is a member of `st_blocks'. */ 470/* Define to 1 if `struct stat' is a member of `st_blocks'. */
471#define HAVE_STRUCT_STAT_ST_BLOCKS 1 471#define HAVE_STRUCT_STAT_ST_BLOCKS 1
472 472
473/* Define to 1 if `struct thread' is a member of `td_pcb'. */ 473/* Define to 1 if `struct thread' is a member of `td_pcb'. */
474/* #undef HAVE_STRUCT_THREAD_TD_PCB */ 474/* #undef HAVE_STRUCT_THREAD_TD_PCB */
475 475
476/* Define to 1 if `struct user_regs_struct' is a member of `fs_base'. */ 476/* Define to 1 if `struct user_regs_struct' is a member of `fs_base'. */
477/* #undef HAVE_STRUCT_USER_REGS_STRUCT_FS_BASE */ 477/* #undef HAVE_STRUCT_USER_REGS_STRUCT_FS_BASE */
478 478
479/* Define to 1 if `struct user_regs_struct' is a member of `gs_base'. */ 479/* Define to 1 if `struct user_regs_struct' is a member of `gs_base'. */
480/* #undef HAVE_STRUCT_USER_REGS_STRUCT_GS_BASE */ 480/* #undef HAVE_STRUCT_USER_REGS_STRUCT_GS_BASE */
481 481
482/* Define to 1 if you have the <sys/debugreg.h> header file. */ 482/* Define to 1 if you have the <sys/debugreg.h> header file. */
483/* #undef HAVE_SYS_DEBUGREG_H */ 483/* #undef HAVE_SYS_DEBUGREG_H */
484 484
485/* Define to 1 if you have the <sys/fault.h> header file. */ 485/* Define to 1 if you have the <sys/fault.h> header file. */
486/* #undef HAVE_SYS_FAULT_H */ 486/* #undef HAVE_SYS_FAULT_H */
487 487
488/* Define to 1 if you have the <sys/file.h> header file. */ 488/* Define to 1 if you have the <sys/file.h> header file. */
489#define HAVE_SYS_FILE_H 1 489#define HAVE_SYS_FILE_H 1
490 490
491/* Define to 1 if you have the <sys/filio.h> header file. */ 491/* Define to 1 if you have the <sys/filio.h> header file. */
492#define HAVE_SYS_FILIO_H 1 492#define HAVE_SYS_FILIO_H 1
493 493
494/* Define to 1 if you have the <sys/ioctl.h> header file. */ 494/* Define to 1 if you have the <sys/ioctl.h> header file. */
495#define HAVE_SYS_IOCTL_H 1 495#define HAVE_SYS_IOCTL_H 1
496 496
497/* Define to 1 if you have the <sys/param.h> header file. */ 497/* Define to 1 if you have the <sys/param.h> header file. */
498#define HAVE_SYS_PARAM_H 1 498#define HAVE_SYS_PARAM_H 1
499 499
500/* Define to 1 if you have the <sys/poll.h> header file. */ 500/* Define to 1 if you have the <sys/poll.h> header file. */
501#define HAVE_SYS_POLL_H 1 501#define HAVE_SYS_POLL_H 1
502 502
503/* Define to 1 if you have the <sys/procfs.h> header file. */ 503/* Define to 1 if you have the <sys/procfs.h> header file. */
504/* #undef HAVE_SYS_PROCFS_H */ 504/* #undef HAVE_SYS_PROCFS_H */
505 505
506/* Define to 1 if you have the <sys/proc.h> header file. */ 506/* Define to 1 if you have the <sys/proc.h> header file. */
507#define HAVE_SYS_PROC_H 1 507#define HAVE_SYS_PROC_H 1
508 508
509/* Define to 1 if you have the <sys/ptrace.h> header file. */ 509/* Define to 1 if you have the <sys/ptrace.h> header file. */
510#define HAVE_SYS_PTRACE_H 1 510#define HAVE_SYS_PTRACE_H 1
511 511
512/* Define to 1 if you have the <sys/reg.h> header file. */ 512/* Define to 1 if you have the <sys/reg.h> header file. */
513/* #undef HAVE_SYS_REG_H */ 513/* #undef HAVE_SYS_REG_H */
514 514
515/* Define to 1 if you have the <sys/resource.h> header file. */ 515/* Define to 1 if you have the <sys/resource.h> header file. */
516#define HAVE_SYS_RESOURCE_H 1 516#define HAVE_SYS_RESOURCE_H 1
517 517
518/* Define to 1 if you have the <sys/select.h> header file. */ 518/* Define to 1 if you have the <sys/select.h> header file. */
519#define HAVE_SYS_SELECT_H 1 519#define HAVE_SYS_SELECT_H 1
520 520
521/* Define to 1 if you have the <sys/socket.h> header file. */ 521/* Define to 1 if you have the <sys/socket.h> header file. */
522#define HAVE_SYS_SOCKET_H 1 522#define HAVE_SYS_SOCKET_H 1
523 523
524/* Define to 1 if you have the <sys/stat.h> header file. */ 524/* Define to 1 if you have the <sys/stat.h> header file. */
525#define HAVE_SYS_STAT_H 1 525#define HAVE_SYS_STAT_H 1
526 526
527/* Define to 1 if you have the <sys/syscall.h> header file. */ 527/* Define to 1 if you have the <sys/syscall.h> header file. */
528#define HAVE_SYS_SYSCALL_H 1 528#define HAVE_SYS_SYSCALL_H 1
529 529
530/* Define to 1 if you have the <sys/types.h> header file. */ 530/* Define to 1 if you have the <sys/types.h> header file. */
531#define HAVE_SYS_TYPES_H 1 531#define HAVE_SYS_TYPES_H 1
532 532
533/* Define to 1 if you have the <sys/un.h> header file. */ 533/* Define to 1 if you have the <sys/un.h> header file. */
534#define HAVE_SYS_UN_H 1 534#define HAVE_SYS_UN_H 1
535 535
536/* Define to 1 if you have the <sys/user.h> header file. */ 536/* Define to 1 if you have the <sys/user.h> header file. */
537#define HAVE_SYS_USER_H 1 537#define HAVE_SYS_USER_H 1
538 538
539/* Define to 1 if you have the <sys/wait.h> header file. */ 539/* Define to 1 if you have the <sys/wait.h> header file. */
540#define HAVE_SYS_WAIT_H 1 540#define HAVE_SYS_WAIT_H 1
541 541
542/* Define to 1 if you have the <termios.h> header file. */ 542/* Define to 1 if you have the <termios.h> header file. */
543#define HAVE_TERMIOS_H 1 543#define HAVE_TERMIOS_H 1
544 544
545/* Define to 1 if you have the <termio.h> header file. */ 545/* Define to 1 if you have the <termio.h> header file. */
546/* #undef HAVE_TERMIO_H */ 546/* #undef HAVE_TERMIO_H */
547 547
548/* Define to 1 if you have the <term.h> header file. */ 548/* Define to 1 if you have the <term.h> header file. */
549#define HAVE_TERM_H 1 549#define HAVE_TERM_H 1
550 550
551/* Define to 1 if you have the <thread_db.h> header file. */ 551/* Define to 1 if you have the <thread_db.h> header file. */
552/* #undef HAVE_THREAD_DB_H */ 552/* #undef HAVE_THREAD_DB_H */
553 553
554/* Define if using Solaris thread debugging. */ 554/* Define if using Solaris thread debugging. */
555/* #undef HAVE_THREAD_DB_LIB */ 555/* #undef HAVE_THREAD_DB_LIB */
556 556
557/* Define if you support the tkill syscall. */ 557/* Define if you support the tkill syscall. */
558/* #undef HAVE_TKILL_SYSCALL */ 558/* #undef HAVE_TKILL_SYSCALL */
559 559
560/* Define to 1 if you have the `ttrace' function. */ 560/* Define to 1 if you have the `ttrace' function. */
561/* #undef HAVE_TTRACE */ 561/* #undef HAVE_TTRACE */
562 562
563/* Define to 1 if you have the <unistd.h> header file. */ 563/* Define to 1 if you have the <unistd.h> header file. */
564#define HAVE_UNISTD_H 1 564#define HAVE_UNISTD_H 1
565 565
566/* Define to 1 if you have the `vfork' function. */ 566/* Define to 1 if you have the `vfork' function. */
567#define HAVE_VFORK 1 567#define HAVE_VFORK 1
568 568
569/* Define to 1 if you have the <vfork.h> header file. */ 569/* Define to 1 if you have the <vfork.h> header file. */
570/* #undef HAVE_VFORK_H */ 570/* #undef HAVE_VFORK_H */
571 571
572/* Define to 1 if you have the `waitpid' function. */ 572/* Define to 1 if you have the `waitpid' function. */
573#define HAVE_WAITPID 1 573#define HAVE_WAITPID 1
574 574
575/* Define to 1 if you have the <wait.h> header file. */ 575/* Define to 1 if you have the <wait.h> header file. */
576/* #undef HAVE_WAIT_H */ 576/* #undef HAVE_WAIT_H */
577 577
578/* Define to 1 if you have the `wborder' function. */ 578/* Define to 1 if you have the `wborder' function. */
579#define HAVE_WBORDER 1 579#define HAVE_WBORDER 1
580 580
581/* Define to 1 if you have the <windows.h> header file. */ 581/* Define to 1 if you have the <windows.h> header file. */
582/* #undef HAVE_WINDOWS_H */ 582/* #undef HAVE_WINDOWS_H */
583 583
584/* Define to 1 if `fork' works. */ 584/* Define to 1 if `fork' works. */
585#define HAVE_WORKING_FORK 1 585#define HAVE_WORKING_FORK 1
586 586
587/* Define to 1 if `vfork' works. */ 587/* Define to 1 if `vfork' works. */
588#define HAVE_WORKING_VFORK 1 588#define HAVE_WORKING_VFORK 1
589 589
590/* Define to 1 if you have the `wresize' function. */ 590/* Define to 1 if you have the `wresize' function. */
591#define HAVE_WRESIZE 1 591#define HAVE_WRESIZE 1
592 592
593/* Define to 1 if you have the `XML_StopParser' function. */ 593/* Define to 1 if you have the `XML_StopParser' function. */
594/* #undef HAVE_XML_STOPPARSER */ 594/* #undef HAVE_XML_STOPPARSER */
595 595
596/* Define to 1 if your system has the _etext variable. */ 596/* Define to 1 if your system has the _etext variable. */
597#define HAVE__ETEXT 1 597#define HAVE__ETEXT 1
598 598
599/* Define to 1 if you have the `_mcleanup' function. */ 599/* Define to 1 if you have the `_mcleanup' function. */
600#define HAVE__MCLEANUP 1 600#define HAVE__MCLEANUP 1
601 601
602/* Path of directory of iconv program. */ 602/* Path of directory of iconv program. */
603/* #undef ICONV_BIN */ 603/* #undef ICONV_BIN */
604 604
605/* Define if the iconv directory should be relocated when GDB is moved. */ 605/* Define if the iconv directory should be relocated when GDB is moved. */
606/* #undef ICONV_BIN_RELOCATABLE */ 606/* #undef ICONV_BIN_RELOCATABLE */
607 607
608/* Define as const if the declaration of iconv() needs const. */ 608/* Define as const if the declaration of iconv() needs const. */
609#define ICONV_CONST const 609#define ICONV_CONST const
610 610
611/* directory to load the JIT readers from */ 611/* directory to load the JIT readers from */
612#define JIT_READER_DIR "/usr/lib/gdb" 612#define JIT_READER_DIR "/usr/lib/gdb"
613 613
614/* Define if the jit-reader-dir directory should be relocated when GDB is 614/* Define if the jit-reader-dir directory should be relocated when GDB is
615 moved. */ 615 moved. */
616#define JIT_READER_DIR_RELOCATABLE 1 616#define JIT_READER_DIR_RELOCATABLE 1
617 617
618/* Define if you want to use new multi-fd /proc interface. */ 618/* Define if you want to use new multi-fd /proc interface. */
619/* #undef NEW_PROC_API */ 619/* #undef NEW_PROC_API */
620 620
621/* Name of this package. */ 621/* Name of this package. */
622#define PACKAGE "gdb" 622#define PACKAGE "gdb"
623 623
624/* Define to the address where bug reports for this package should be sent. */ 624/* Define to the address where bug reports for this package should be sent. */
625#define PACKAGE_BUGREPORT "" 625#define PACKAGE_BUGREPORT ""
626 626
627/* Define to the full name of this package. */ 627/* Define to the full name of this package. */
628#define PACKAGE_NAME "" 628#define PACKAGE_NAME ""
629 629
630/* Define to the full name and version of this package. */ 630/* Define to the full name and version of this package. */
631#define PACKAGE_STRING "" 631#define PACKAGE_STRING ""
632 632
633/* Define to the one symbol short name of this package. */ 633/* Define to the one symbol short name of this package. */
634#define PACKAGE_TARNAME "" 634#define PACKAGE_TARNAME ""
635 635
636/* Define to the home page for this package. */ 636/* Define to the home page for this package. */
637#define PACKAGE_URL "" 637#define PACKAGE_URL ""
638 638
639/* Define to the version of this package. */ 639/* Define to the version of this package. */
640#define PACKAGE_VERSION "" 640#define PACKAGE_VERSION ""
641 641
642/* Additional package description */ 642/* Additional package description */
643#define PKGVERSION "(GDB) " 643#define PKGVERSION "(GDB) "
644 644
645/* Define if the prfpregset_t type is broken. */ 645/* Define if the prfpregset_t type is broken. */
646/* #undef PRFPREGSET_T_BROKEN */ 646/* #undef PRFPREGSET_T_BROKEN */
647 647
648/* Define to 1 if the "%H, %D and %DD" formats work to print decfloats. */ 648/* Define to 1 if the "%H, %D and %DD" formats work to print decfloats. */
649/* #undef PRINTF_HAS_DECFLOAT */ 649/* #undef PRINTF_HAS_DECFLOAT */
650 650
651/* Define to 1 if the "%Lg" format works to print long doubles. */ 651/* Define to 1 if the "%Lg" format works to print long doubles. */
652/* #undef PRINTF_HAS_LONG_DOUBLE */ 652/* #undef PRINTF_HAS_LONG_DOUBLE */
653 653
654/* Define to 1 if the "%ll" format works to print long longs. */ 654/* Define to 1 if the "%ll" format works to print long longs. */
655/* #undef PRINTF_HAS_LONG_LONG */ 655/* #undef PRINTF_HAS_LONG_LONG */
656 656
657/* Define if <proc_service.h> on solaris uses int instead of size_t, and 657/* Define if <proc_service.h> on solaris uses int instead of size_t, and
658 assorted other type changes. */ 658 assorted other type changes. */
659/* #undef PROC_SERVICE_IS_OLD */ 659/* #undef PROC_SERVICE_IS_OLD */
660 660
661/* Define to the type of arg 3 for ptrace. */ 661/* Define to the type of arg 3 for ptrace. */
662#define PTRACE_TYPE_ARG3 void * 662#define PTRACE_TYPE_ARG3 void *
663 663
664/* Define to the type of arg 4 for ptrace. */ 664/* Define to the type of arg 4 for ptrace. */
665#define PTRACE_TYPE_ARG4 int 665#define PTRACE_TYPE_ARG4 int
666 666
667/* Define to the type of arg 5 for ptrace. */ 667/* Define to the type of arg 5 for ptrace. */
668/* #undef PTRACE_TYPE_ARG5 */ 668/* #undef PTRACE_TYPE_ARG5 */
669 669
670/* Define as the return type of ptrace. */ 670/* Define as the return type of ptrace. */
671#define PTRACE_TYPE_RET int 671#define PTRACE_TYPE_RET int
672 672
673/* Define if the python directory should be relocated when GDB is moved. */ 673/* Define if the python directory should be relocated when GDB is moved. */
674/* #undef PYTHON_PATH_RELOCATABLE */ 674/* #undef PYTHON_PATH_RELOCATABLE */
675 675
676/* Relocated directory for source files. */ 676/* Relocated directory for source files. */
677/* #undef RELOC_SRCDIR */ 677/* #undef RELOC_SRCDIR */
678 678
679/* Bug reporting address */ 679/* Bug reporting address */
680#define REPORT_BUGS_TO "<http://www.gnu.org/software/gdb/bugs/>" 680#define REPORT_BUGS_TO "<http://www.gnu.org/software/gdb/bugs/>"
681 681
682/* Define as the return type of signal handlers (`int' or `void'). */ 682/* Define as the return type of signal handlers (`int' or `void'). */
683#define RETSIGTYPE void 683#define RETSIGTYPE void
684 684
685/* Define to 1 if the "%Lg" format works to scan long doubles. */ 685/* Define to 1 if the "%Lg" format works to scan long doubles. */
686/* #undef SCANF_HAS_LONG_DOUBLE */ 686/* #undef SCANF_HAS_LONG_DOUBLE */
687 687
688/* Define to 1 if the `setpgrp' function takes no argument. */ 688/* Define to 1 if the `setpgrp' function takes no argument. */
689/* #undef SETPGRP_VOID */ 689/* #undef SETPGRP_VOID */
690 690
691/* The size of `long', as computed by sizeof. */ 691/* The size of `long', as computed by sizeof. */
692/* #undef SIZEOF_LONG */ 692/* #undef SIZEOF_LONG */
693 693
694/* The size of `long long', as computed by sizeof. */ 694/* The size of `long long', as computed by sizeof. */
695#define SIZEOF_LONG_LONG 8 695#define SIZEOF_LONG_LONG 8
696 696
697/* The size of `unsigned long', as computed by sizeof. */ 697/* The size of `unsigned long', as computed by sizeof. */
698#define SIZEOF_UNSIGNED_LONG 4 698#define SIZEOF_UNSIGNED_LONG 4
699 699
700/* The size of `unsigned long long', as computed by sizeof. */ 700/* The size of `unsigned long long', as computed by sizeof. */
701#define SIZEOF_UNSIGNED_LONG_LONG 8 701#define SIZEOF_UNSIGNED_LONG_LONG 8
702 702
703/* The size of `unsigned __int128', as computed by sizeof. */ 703/* The size of `unsigned __int128', as computed by sizeof. */
704#define SIZEOF_UNSIGNED___INT128 0 704#define SIZEOF_UNSIGNED___INT128 0
705 705
706/* If using the C implementation of alloca, define if you know the 706/* If using the C implementation of alloca, define if you know the
707 direction of stack growth for your system; otherwise it will be 707 direction of stack growth for your system; otherwise it will be
708 automatically deduced at runtime. 708 automatically deduced at runtime.
709 STACK_DIRECTION > 0 => grows toward higher addresses 709 STACK_DIRECTION > 0 => grows toward higher addresses
710 STACK_DIRECTION < 0 => grows toward lower addresses 710 STACK_DIRECTION < 0 => grows toward lower addresses
711 STACK_DIRECTION = 0 => direction of growth unknown */ 711 STACK_DIRECTION = 0 => direction of growth unknown */
712/* #undef STACK_DIRECTION */ 712/* #undef STACK_DIRECTION */
713 713
714/* Define to 1 if you have the ANSI C header files. */ 714/* Define to 1 if you have the ANSI C header files. */
715#define STDC_HEADERS 1 715#define STDC_HEADERS 1
716 716
717/* automatically load a system-wide gdbinit file */ 717/* automatically load a system-wide gdbinit file */
718#define SYSTEM_GDBINIT "" 718#define SYSTEM_GDBINIT ""
719 719
720/* Define if the system-gdbinit directory should be relocated when GDB is 720/* Define if the system-gdbinit directory should be relocated when GDB is
721 moved. */ 721 moved. */
722#define SYSTEM_GDBINIT_RELOCATABLE 0 722#define SYSTEM_GDBINIT_RELOCATABLE 0
723 723
724/* search for usr/lib et al within DIR */ 724/* search for usr/lib et al within DIR */
725#define TARGET_SYSTEM_ROOT "" 725#define TARGET_SYSTEM_ROOT ""
726 726
727/* Define if the sysroot directory should be relocated when GDB is moved. */ 727/* Define if the sysroot directory should be relocated when GDB is moved. */
728#define TARGET_SYSTEM_ROOT_RELOCATABLE 0 728#define TARGET_SYSTEM_ROOT_RELOCATABLE 0
729 729
730/* Define if <thread_db.h> has the TD_NOTALLOC error code. */ 730/* Define if <thread_db.h> has the TD_NOTALLOC error code. */
731/* #undef THREAD_DB_HAS_TD_NOTALLOC */ 731/* #undef THREAD_DB_HAS_TD_NOTALLOC */
732 732
733/* Define if <thread_db.h> has the TD_NOTLS error code. */ 733/* Define if <thread_db.h> has the TD_NOTLS error code. */
734/* #undef THREAD_DB_HAS_TD_NOTLS */ 734/* #undef THREAD_DB_HAS_TD_NOTLS */
735 735
736/* Define if <thread_db.h> has the TD_VERSION error code. */ 736/* Define if <thread_db.h> has the TD_VERSION error code. */
737/* #undef THREAD_DB_HAS_TD_VERSION */ 737/* #undef THREAD_DB_HAS_TD_VERSION */
738 738
739/* Define to 1 if the regex included in libiberty should be used. */ 739/* Define to 1 if the regex included in libiberty should be used. */
740#define USE_INCLUDED_REGEX 1 740#define USE_INCLUDED_REGEX 1
741 741
742/* Enable extensions on AIX 3, Interix. */ 742/* Enable extensions on AIX 3, Interix. */
743#ifndef _ALL_SOURCE 743#ifndef _ALL_SOURCE
744# define _ALL_SOURCE 1 744# define _ALL_SOURCE 1
745#endif 745#endif
746/* Enable GNU extensions on systems that have them. */ 746/* Enable GNU extensions on systems that have them. */
747#ifndef _GNU_SOURCE 747#ifndef _GNU_SOURCE
748# define _GNU_SOURCE 1 748# define _GNU_SOURCE 1
749#endif 749#endif
750/* Enable threading extensions on Solaris. */ 750/* Enable threading extensions on Solaris. */
751#ifndef _POSIX_PTHREAD_SEMANTICS 751#ifndef _POSIX_PTHREAD_SEMANTICS
752# define _POSIX_PTHREAD_SEMANTICS 1 752# define _POSIX_PTHREAD_SEMANTICS 1
753#endif 753#endif
754/* Enable extensions on HP NonStop. */ 754/* Enable extensions on HP NonStop. */
755#ifndef _TANDEM_SOURCE 755#ifndef _TANDEM_SOURCE
756# define _TANDEM_SOURCE 1 756# define _TANDEM_SOURCE 1
757#endif 757#endif
758/* Enable general extensions on Solaris. */ 758/* Enable general extensions on Solaris. */
759#ifndef __EXTENSIONS__ 759#ifndef __EXTENSIONS__
760# define __EXTENSIONS__ 1 760# define __EXTENSIONS__ 1
761#endif 761#endif
762 762
763 763
764/* Define if we should use the Windows API, instead of the POSIX API. On 764/* Define if we should use the Windows API, instead of the POSIX API. On
765 Windows, we use the Windows API when building for MinGW, but the POSIX API 765 Windows, we use the Windows API when building for MinGW, but the POSIX API
766 when building for Cygwin. */ 766 when building for Cygwin. */
767/* #undef USE_WIN32API */ 767/* #undef USE_WIN32API */
768 768
769/* Define if --with-python provides a path, either directly or via 769/* Define if --with-python provides a path, either directly or via
770 python-config.py --exec-prefix. */ 770 python-config.py --exec-prefix. */
771/* #undef WITH_PYTHON_PATH */ 771/* #undef WITH_PYTHON_PATH */
772 772
773/* Define if the simulator is being linked in. */ 773/* Define if the simulator is being linked in. */
774/* #undef WITH_SIM */ 774/* #undef WITH_SIM */
775 775
776/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most 776/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
777 significant byte first (like Motorola and SPARC, unlike Intel). */ 777 significant byte first (like Motorola and SPARC, unlike Intel). */
778#if defined AC_APPLE_UNIVERSAL_BUILD 778#if defined AC_APPLE_UNIVERSAL_BUILD
779# if defined __BIG_ENDIAN__ 779# if defined __BIG_ENDIAN__
780# define WORDS_BIGENDIAN 1 780# define WORDS_BIGENDIAN 1
781# endif 781# endif
782#else 782#else
783# ifndef WORDS_BIGENDIAN 783# ifndef WORDS_BIGENDIAN
784/* # undef WORDS_BIGENDIAN */ 784/* # undef WORDS_BIGENDIAN */
785# endif 785# endif
786#endif 786#endif
787 787
788/* Number of bits in a file offset, on hosts where this is settable. */ 788/* Number of bits in a file offset, on hosts where this is settable. */
789/* #undef _FILE_OFFSET_BITS */ 789/* #undef _FILE_OFFSET_BITS */
790 790
791/* Define to 1 so <sys/proc.h> gets a definition of anon_hdl. Works around a 791/* Define to 1 so <sys/proc.h> gets a definition of anon_hdl. Works around a
792 <sys/proc.h> problem on IRIX 5. */ 792 <sys/proc.h> problem on IRIX 5. */
793/* #undef _KMEMUSER */ 793/* #undef _KMEMUSER */
794 794
795/* Define for large files, on AIX-style hosts. */ 795/* Define for large files, on AIX-style hosts. */
796/* #undef _LARGE_FILES */ 796/* #undef _LARGE_FILES */
797 797
798/* Define to 1 if on MINIX. */ 798/* Define to 1 if on MINIX. */
799/* #undef _MINIX */ 799/* #undef _MINIX */
800 800
801/* Define to 1 to avoid a clash between <widec.h> and <wchar.h> on Solaris 801/* Define to 1 to avoid a clash between <widec.h> and <wchar.h> on Solaris
802 2.[789] when using GCC. */ 802 2.[789] when using GCC. */
803/* #undef _MSE_INT_H */ 803/* #undef _MSE_INT_H */
804 804
805/* Define to 2 if the system does not provide POSIX.1 features except with 805/* Define to 2 if the system does not provide POSIX.1 features except with
806 this defined. */ 806 this defined. */
807/* #undef _POSIX_1_SOURCE */ 807/* #undef _POSIX_1_SOURCE */
808 808
809/* Define to 1 if you need to in order for `stat' and other things to work. */ 809/* Define to 1 if you need to in order for `stat' and other things to work. */
810/* #undef _POSIX_SOURCE */ 810/* #undef _POSIX_SOURCE */
811 811
812/* Define to empty if `const' does not conform to ANSI C. */ 812/* Define to empty if `const' does not conform to ANSI C. */
813/* #undef const */ 813/* #undef const */
814 814
815/* Define to `__inline__' or `__inline' if that's what the C compiler 815/* Define to `__inline__' or `__inline' if that's what the C compiler
816 calls it, or to nothing if 'inline' is not supported under any name. */ 816 calls it, or to nothing if 'inline' is not supported under any name. */
817#ifndef __cplusplus 817#ifndef __cplusplus
818/* #undef inline */ 818/* #undef inline */
819#endif 819#endif
820 820
821/* Define to `int' if <sys/types.h> does not define. */ 821/* Define to `int' if <sys/types.h> does not define. */
822/* #undef pid_t */ 822/* #undef pid_t */
823 823
824/* Define as `fork' if `vfork' does not work. */ 824/* Define as `fork' if `vfork' does not work. */
825/* #undef vfork */ 825/* #undef vfork */