* symfile.c (compare_psymbols, compare_symbols): Declare using
[deliverable/binutils-gdb.git] / gdb / MAINTAINERS
1 GDB Maintainers
2
3
4 Blanket Write Privs
5 (alphabetic)
6
7 Jim Blandy jimb@cygnus.com
8 Andrew Cagney ac131313@cygnus.com
9 J.T. Conklin jtc@redback.com
10 Fred Fish fnf@ninemoons.com
11 Mark Kettenis kettenis@gnu.org
12 Peter Schauer Peter.Schauer@regent.e-technik.tu-muenchen.de
13 Stan Shebs shebs@apple.com
14 Michael Snyder msnyder@cygnus.com
15
16
17 Various Maintainers
18
19 Note individuals who maintain parts of the debugger need approval to
20 check in changes outside of the immediate domain that they maintain.
21
22 If there is no maintainer for a given domain then the responsibility
23 falls to the head maintainer.
24
25 If there are several maintainers for a given domain then
26 responsibility falls to the first maintainer. The first maintainer is
27 free to devolve that responsibility among the other maintainers.
28
29
30 The Obvious Fix Rule
31
32 All maintainers listed in this file are allowed to check in obvious
33 fixes.
34
35 An "obvious fix" means that there is no possibility that anyone will
36 disagree with the change. Something like bypassing an interface will
37 result in instantaneous and loud complaints.
38
39 A good mental test is "will the person who hates my work the most be
40 able to find fault with the change" - if so, then it's not obvious and
41 needs to be posted first. :-)
42
43
44 Target/Architecture:
45
46 Generic ISA (Instruction Set Architecture) issues, API variants, CPU
47 variants. *-tdep.c. The Target/Architecture maintainer works with the
48 host maintainer when resolving build issues. The Target/Architecture
49 maintainer works with the native maintainer when resolving API issues.
50
51 a29k --target=a29k-amd-udi -Werror
52 Maintenance only
53
54 alpha --target=alpha-dec-osf4.0a -Werror
55 Maintenance only
56
57 arc --target=arc-elf ,-Werror
58 Maintenance only
59
60 arm (--target=arm-coff,arm-elf,arm-pe broken)
61 Fernando Nasser fnasser@cygnus.com
62 Scott Bambrough scottb@netwinder.org
63
64 d10v --target=d10v-elf ,-Werror
65 Andrew Cagney cagney@cygnus.com
66
67 d30v --target=d30v-elf ,-Werror
68 David Taylor taylor@cygnus.com
69
70 djgpp --target=i586-pc-msdosdjgpp ,-Werror
71 (See native and host)
72
73 fr30 --target=fr30-elf -Werror
74 Maintenance only
75
76 h8300 --target=h8300hms -Werror
77 Maintenance only
78
79 h8500 --target=h8500hms -Werror
80 Maintenance only
81
82 i386 --target=i386-elf,i386-aout ,-Werror
83 Mark Kettenis kettenis@gnu.org
84
85 i960 --target=i960-coff ,-Werror
86 Maintenance only
87
88 ia64 --target=ia64-linux ,-Werror
89 Kevin Buettner kevinb@cygnus.com
90
91 m32r --target=m32r-elf -Werror
92 Michael Snyder msnyder@cygnus.com
93
94 m68hc11 --target=m68hc11-elf ,-Werror
95 Stephane Carrez Stephane.Carrez@worldnet.fr
96
97 m68k --target=m68k-aout,m68k-coff,m68k-elf ,-Werror
98 Maintenance only
99
100 m88k (--target=m88k broken)
101 Known problem in 5.1
102 Maintenance only
103
104 mcore --target=mcore-elf,mcore-pe ,-Werror
105 Maintenance only
106
107 mips --target=mips-elf,mips64-elf ,-Werror
108 Andrew Cagney cagney@cygnus.com
109
110 mn10200 --target=mn10200-elf ,-Werror
111 Maintenance only
112
113 mn10300 --target=mn10300-elf ,-Werror
114 Maintenance only
115
116 ns32k --target=ns32k-netbsd ,-Werror
117 Maintenance only
118
119 pa (--target=hppa1.1-hp-proelf broken)
120 Jeff Law law@cygnus.com
121
122 powerpc --target=powerpc-eabi,powerpcle-eabi ,-Werror
123 Kevin Buettner kevinb@cygnus.com
124 Nick Duffek nsd@cygnus.com
125
126 rs6000 --target=rs6000-ibm-aix3.2,rs6000-ibm-aix4.1 ,-Werror
127 (see rs6000 native and ppc target)
128
129 sh --target=sh-hms,sh-elf ,-Werror
130 Elena Zannoni ezannoni@cygnus.com
131
132 sparc --target=sparc-elf,sparc64-elf ,-Werror
133 David Taylor taylor@cygnus.com
134
135 tic80 (--target=tic80-coff broken)
136 Maintenance only
137
138 v850 --target=v850-elf ,-Werror
139 Maintenance only
140
141 vax --target=vax-dec-vms5.5 ,-Werror
142 Maintenance only
143
144 w65 (--target=w65 broken)
145 Maintenance only
146
147 z8k (--target=z8k-coff broken)
148 Known problem in 5.1
149 Maintenance only
150
151 All maintainers can make arbitrary changes to OBSOLETE targets.
152
153 All maintainers can make mechanical (params, spelling, indentation,
154 multi-arch, -W..., ....) changes to ``maintenance only'' targets.
155 Please sanity check the change by compiling with one of the listed
156 targets.
157
158 The GAWK segment:
159
160 awk < "${maintainers}" '
161 $2 ~ /--target=.*/ {
162 targets = gensub (/^.*--target=/, "", 1, $2)
163 warnings = gensub (/[)]*$/, "", 1, $3)
164 split (targets, targ, /,/)
165 for (i in targ) {
166 print targ[i], warnings
167 }
168 }'
169
170 can be used to generate a full list of --target=
171 --enable-gdb-build-warning= pairs.
172
173
174
175 Host/Native:
176
177 The Native maintainer is responsible for target specific native
178 support - typically shared libraries and quirks to procfs/ptrace/...
179 The Native maintainer works with the Arch and Core maintainers when
180 resolving more generic problems.
181
182 The host maintainer ensures that gdb (including mmalloc) can be built
183 as a cross debugger on their platform.
184
185 AIX Peter Schauer Peter.Schauer@regent.e-technik.tu-muenchen.de
186 Kevin Buettner kevinb@cygnus.com
187
188 djgpp native Eli Zaretskii eliz@gnu.org
189 DJ Delorie dj@cygnus.com
190 MS Windows (NT, CE, '00, 9x, Me) host & native
191 Chris Faylor cgf@cygnus.com
192 GNU/Linux/x86 native & host
193 Mark Kettenis kettenis@gnu.org
194 Jim Blandy jimb@cygnus.com
195 GNU/Linux PPC native Kevin Buettner kevinb@cygnus.com
196 FreeBSD native & host Mark Kettenis kettenis@gnu.org
197 David O'Brien obrien@freebsd.org
198 hurd native Mark Kettenis kettenis@gnu.org
199 hpux, hp pa native Jeff Law law@cygnus.com
200 NetBSD native & host J.T. Conklin jtc@redback.com
201 SCO/Unixware Nick Duffek nsd@cygnus.com
202 Robert Lipe rjl@sco.com
203 GNU/Linux ARM native Scott Bambrough scottb@netwinder.org
204 Solaris/x86 native & host (devolved)
205 Nick Duffek nsd@cygnus.com
206 Peter Schauer Peter.Schauer@regent.e-technik.tu-muenchen.de
207 Solaris/SPARC native & host (devolved)
208 David Taylor taylor@cygnus.com
209 Michael Snyder msnyder@cygnus.com
210 Mac OS X Klee Dienes kdienes@apple.com
211 Jim Ingham jingham@apple.com
212
213
214
215 Core: Generic components used by all of GDB
216
217 generic arch support Andrew Cagney cagney@cygnus.com
218 Any host/target maintainer can add to
219 gdbarch.{c,h,sh}. Send tricky ones to cagney.
220 target vector Andrew Cagney cagney@cygnus.com
221 main (main.c, top.c) Elena Zannoni ezannoni@cygnus.com
222 event loop Elena Zannoni ezannoni@cygnus.com
223
224 generic symtabs Jim Blandy jimb@cygnus.com
225 Elena Zannoni ezannoni@cygnus.com
226 dwarf readers Jim Blandy jimb@cygnus.com
227 Elena Zannoni ezannoni@cygnus.com
228 elf reader Jim Blandy jimb@cygnus.com
229 Elena Zannoni ezannoni@cygnus.com
230 stabs reader Jim Blandy jimb@cygnus.com
231 Elena Zannoni ezannoni@cygnus.com
232 coff reader Philippe De Muyter phdm@macqel.be
233 xcoff reader Any maintainer can modify this; please send tricky
234 ones to Kevin Buettner <kevinb@cygnus.com>
235 linespec Jim Blandy jimb@cygnus.com
236 Elena Zannoni ezannoni@cygnus.com
237 Fernando Nasser fnasser@cygnus.com
238
239 tracing bytecode stuff Jim Blandy jimb@cygnus.com
240 tracing Michael Snyder msnyder@cygnus.com
241 threads Michael Snyder msnyder@cygnus.com
242 Mark Kettenis kettenis@gnu.org
243 breakpoints Michael Snyder msnyder@cygnus.com
244 Jim Blandy jimb@cygnus.com
245 language support David Taylor taylor@cygnus.com
246 C++ support Daniel Berlin dan@cgsoftware.com
247 Java support Anthony Green green@cygnus.com
248 Objective-C/C++ Klee Dienes kdienes@apple.com
249 Jim Ingham jimgham@apple.com
250 Pascal support Pierre Muller muller@sourceware.cygnus.com
251 expression eval David Taylor taylor@cygnus.com
252 defs.h David Taylor taylor@cygnus.com
253 utils.c David Taylor taylor@cygnus.com
254 Scheme support Jim Blandy jimb@cygnus.com
255
256 shared libs (devolved) Jim Blandy jimb@cygnus.com
257 Kevin Buettner kevinb@cygnus.com
258 xcoffsolib Peter Schauer Peter.Schauer@regent.e-technik.tu-muenchen.de
259
260 remote.c Andrew Cagney cagney@cygnus.com
261 J.T. Conklin jtc@redback.com
262 include/remote-sim.h, remote-sim.c
263 Andrew Cagney cagney@cygnus.com
264 sds protocol Fernando Nasser fnasser@cygnus.com
265 rdi/adp protocol Fernando Nasser fnasser@cygnus.com
266 documentation Eli Zaretskii eliz@gnu.org
267 testsuite Fernando Nasser fnasser@cygnus.com
268 config Mark Salter msalter@redhat.com
269 lib Mark Salter msalter@redhat.com
270 gdbtk (gdb.gdbtk) Keith Seitz keiths@redhat.com
271 mi tests (gdb.mi) Elena Zannoni ezannoni@redhat.com
272 stabs (gdb.satbs) Elena Zannoni ezannoni@redhat.com
273 threads (gdb.threads) Michael Snyder msnyder@redhat.com
274 trace (gdb.trace) Michael Snyder msnyder@redhat.com
275 hp tests (gdb.hp) (vacant)
276 Java tests (gdb.java) Anthony Green green@cygnus.com
277 Kernel Object Display Fernando Nasser fnasser@cygnus.com
278 dcache.c J.T. Conklin jtc@redback.com
279
280
281 UI: External (user) interfaces.
282
283 command interpreter Fernando Nasser fnasser@cygnus.com
284 gdbtk (c & tcl) Jim Ingham jingham@apple.com
285 Fernando Nasser fnasser@cygnus.com
286 Keith Seitz keiths@cygnus.com
287 libgui (w/foundry, sn) Syd Polk spolk@cygnus.com
288 Jim Ingham jingham@apple.com
289 mi (gdb/mi) Andrew Cagney cagney@cygnus.com
290 Elena Zannoni ezannoni@cygnus.com
291 Fernando Nasser fnasser@cygnus.com
292 tui (vacant)
293 Technical Contact Point wdb@cup.hp.com
294
295
296 Misc:
297
298 Web pages. Jim Kingdon jkingdon@engr.sgi.com ++
299 (anyone can edit; kingdon is just lead maintainer)
300
301 Makefile.in, configure* ALL
302
303 mmalloc/ ALL Host maintainers
304
305 sim/ See sim/MAINTAINERS, co-ordinated by:
306 Frank Ch. Eigler fche@cygnus.com
307
308 readline/ Master version: ftp://ftp.cwru.edu/pub/bash/
309 Elena Zannoni ezannoni@cygnus.com
310 Host maintainers (host dependant parts)
311 (but get your changes into the master version)
312
313
314
315 Write After Approval
316
317 David Anderson davea@sgi.com
318 Jim Kingdon jkingdon@engr.sgi.com ++
319 Jason Molenda jsm@cygnus.com
320 H.J. Lu hjl@lucon.org
321 Nick Clifton nickc@cygnus.com
322 Jonathan Larmour jlarmour@redhat.co.uk
323 Glen McCready gkm@cygnus.com
324 Gary Thomas gthomas@redhat.com
325 Pierre Muller muller@sourceware.cygnus.com
326 Kazu Hirata kazu@hxi.com
327 Tom Tromey tromey@cygnus.com
328 Alexandre Oliva aoliva@redhat.com
329 Mark Salter msalter@redhat.com
330 Michael Chastain chastain@redhat.com
331 Orjan Friberg orjanf@axis.com
332 Jeff Holcomb jeffh@redhat.com
333 David Smith dsmith@redhat.com
334 Martin Hunt hunt@redhat.com
335 Matt Hiller hiller@redhat.com
336 Philip Blundell philb@gnu.org
337 Keith Seitz keiths@cygnus.com
338 Geoff Keating geoffk@redhat.com
339 Don Howard dhoward@redhat.com
340
341
342 Past Maintainers
343
344 Jimmy Guo (gdb.hp, tui) guo@cup.hp.com
345
346
347 Folks that have been caught up in a paper trail:
348
349 Jim Kingdon jkingdon@engr.sgi.com
350 Paul Hilfinger hilfingr@gnat.com (*)
351 Chris G. Demetriou cgd@sibyte.com
352
353 --
354
355 (*) Indicates folks that don't have a Kerberos/SSH account in the GDB
356 group.
This page took 0.052514 seconds and 4 git commands to generate.