OSDN Git Service

2007-06-20 Patrick Mansfield <patmans@us.ibm.com>
[pf3gnuchains/pf3gnuchains3x.git] / libgloss / ChangeLog
1 2007-06-20  Patrick Mansfield  <patmans@us.ibm.com>
2
3         * spu/jsre.h: Add JSRE_GETCWD.
4         * spu/getcwd.c: New file, implement getcwd with help from an
5         assist call.
6         * spu/Makefile.in: Add getcwd.
7
8 2007-06-20  Patrick Mansfield  <patmans@us.ibm.com>
9
10         * spu/jsre.h: Add defines for new assist calls.
11         * spu/chdir.c: New file, support chdir via assist call.
12         * spu/chmod.c: New file, support chmod via assist call.
13         * spu/chown.c: New file, support chown via assist call.
14         * spu/fchdir.c: New file, support fchdir via assist call.
15         * spu/fchmod.c: New file, support fchmod via assist call.
16         * spu/fchown.c: New file, support fchown via assist call.
17         * spu/lchown.c: New file, support lchown via assist call.
18         * spu/mkdir.c: New file, support mkdir via assist call.
19         * spu/mknod.c: New file, support mknod via assist call.
20         * spu/rmdir.c: New file, support rmdir via assist call.
21         * spu/Makefile.in: Add new files.
22
23 2007-06-20  Patrick Mansfield  <patmans@us.ibm.com>
24
25         * spu/getpagesize.c: New file add getpagesize via an assist call.
26         * spu/jsre.h: Add JSRE_GETPAGESIZE.
27         * spu/Makefile.in: Add getpagesize.
28
29 2007-06-13  Patrick Mansfield  <patmans@us.ibm.com>
30
31         * spu/Makefile.in: Add nanosleep.c.
32         * spu/jsre.h: Add JSRE_NANOSLEEP.
33         * spu/nanosleep.c: New file, supply nanosleep via an assist call.
34
35 2007-06-05  Patrick Mansfield  <patman@us.ibm.com>
36
37         * spu/jsre.h: Remove the assist call structs and defines that are
38         specific to one assist call from here.
39         * spu/access.c: Move struct syscall_access_t to here.
40         * spu/fstat.c: Move struct syscall_fstat_t to here.
41         * spu/ftruncate.c: Move struct syscall_ftruncate_t to here.
42         * spu/gettimeofday.c: Move struct syscall_gettimeofday_t to here.
43         * spu/lseek.c: Move struct syscall_lseek_t and JSRE_SEEK defines to 
44         here.
45         * spu/open.c: Move struct syscall_open_t and JSRE_O_ defines to here.
46         * spu/read.c: Move struct syscall_read_t to here, and actually use
47         it (it is the same as syscall_write_t).
48         * spu/stat.c: Move struct syscall_stat_t to here.
49         * spu/write.c: Move struct syscall_write_t to here.
50         * spu/close.c: Pass the address of the first and only argument to
51         __send_to_ppe rather than using an automatic variable and a
52         special struct.
53         * spu/dup.c: Ditto.
54         * spu/unlink.c: Ditto.
55
56 2007-05-30  Kazu Hirata  <kazu@codesourcery.com>
57
58         * m68k/cf-crt1.C, m68k/cf.sc, m68k/fido.sc, m68k/fido-crt0.S:
59         Replace __INIT_SECTION__ and __FINI_SECTION__ with _init and
60         _fini, respectively.
61
62 2007-05-23 Patrick Mansfield <patmans@us.ibm.com>
63
64         * spu/syscalls.c: Change __send_to_ppe to return the result stored
65         in stored in slot 0 of the data, rather than have each assisted
66         call retrieve the value.
67         * spu/jsre.h: Remove the now unused syscall_out_t.
68         * spu/access.c: Use the __send_to_ppe result instead of the slot 0
69         value, remove unused syscall_out_t variable.
70         * spu/close.c: Ditto.
71         * spu/dup.c: Ditto.
72         * spu/fstat.c: Ditto.
73         * spu/ftruncate.c: Ditto.
74         * spu/gettimeofday.c: Ditto.
75         * spu/lseek.c: Ditto.
76         * spu/open.c: Ditto.
77         * spu/read.c: Ditto.
78         * spu/stat.c: Ditto.
79         * spu/unlink.c: Ditto.
80         * spu/write.c: Ditto.
81
82 2007-05-23  Kazu Hirata  <kazu@codesourcery.com>
83
84         * m68k/fido.sc (.data): Move .jcr to .text.  Catch .got.plt
85         and .got.
86
87 2007-05-07  Patrick Mansfield  <patmans@us.ibm.com>
88
89         * spu/open.c: Unconditionally set the "mode" to fix a bug where
90         mode was not properly set.
91
92 2007-05-03  Kazu Hirata  <kazu@codesourcery.com>
93
94         * m68k/fido-_exit.c (_exit): Use stop #0x700.
95
96 2007-04-27  Kazu Hirata  <kazu@codesourcery.com>
97
98         * m68k/fido.sc: Catch .text.*, .rodata.*, .data.*, .bss.*,
99         .ctor.*, and .dtor.*.  Wrap ctor/dtor-related sections with KEEP.
100
101 2007-04-04  Patrick Mansfield  <patmans@us.ibm.com>
102  
103         * spu/syscalls.c: Rename _send_to_ppe __send_to_ppe, and set errno
104         on return from the offload call.
105         * spu/jsre.h: Include sys/syscall.h for the send_to_ppe prototype.
106         * spu/access.c: Call __send_to_ppe instead of _send_to_ppe, and
107         remove the setting of errno.
108         * spu/close.c: Ditto.
109         * spu/dup.c: Ditto.
110         * spu/fstat.c: Ditto.
111         * spu/ftruncate.c: Ditto.
112         * spu/gettimeofday.c: Ditto.
113         * spu/lseek.c: Ditto.
114         * spu/open.c: Ditto.
115         * spu/read.c: Ditto.
116         * spu/stat.c: Ditto.
117         * spu/unlink.c: Ditto.
118         * spu/write.c: Ditto.
119
120 2007-03-01  Ben Elliston  <bje@au.ibm.com>
121
122         * spu/sbrk.c (sbrk): Adjust the stack pointer vector correctly so
123         that GCC runtime stack checking works.  Handle the backchain, too.
124
125 2007-02-21  Patrick Mansfield  <patmans@us.ibm.com>
126
127         * spu/gettimeofday.c: New file which adds SPU gettimeofday.
128         * spu/jsre.h: Remove time, add gettimeofday.
129         * spu/Makefile.in: Ditto.
130
131 2007-02-21  Hans-Peter Nilsson  <hp@axis.com>
132
133         * cris/crt0.S: Use jump, not ba, to skip the interrupt table.  Use
134         "setf", not "nop", for common_v10_v32 compatibility.
135         Move out interrupt table to irqtable.S.  Include here for non-ELF.
136         * cris/irqtable.S: Extracted from cris/crt0.S.  Provide per-entry
137         weak default stub definitions.
138         * cris/crtn.c: Use "setf", not "nop", for common_v10_v32
139         compatibility.
140         * cris/setup.S [__arch_common_v10_v32]: Return.
141         * cris/Makefile.in (BSP_OBJS): Add irqtable.o.
142
143 2007-02-15  Nick Clifton  <nickc@redhat.com>
144
145         * sparc/cygmon.ld.src: Link .rodata.* input sections into .text
146         output section.
147         * sparc/cygmon-sparc64-ld.src: Likewise. 
148
149 2007-02-08  Dave Brolley  <brolley@redhat.com>
150
151         * mep: New target directory.
152         * README: Add MeP.
153         * configure.in: Add support for MeP.
154         * configure: Regenerated.
155         * mep/configure.in: New file.
156         * mep/configure: Ditto.
157         * mep/Makefile.in: Ditto.
158         * mep/aclocal.m4: Ditto.
159         * mep/crt0.S: Ditto.
160         * mep/crtn.S: Ditto.
161         * mep/sim-crt0.S: Ditto.
162         * mep/sim-crtn.S: Ditto.
163         * mep/fmax.ld: Ditto.
164         * mep/gcov-io.h: Ditto.
165         * mep/gmap_default.ld: Ditto.
166         * mep/handlers.c: Ditto.
167         * mep/h_reset.c: Ditto.
168         * mep/isatty.c: Ditto.
169         * mep/mep-bb.c: Ditto.
170         * mep/mep-gmon.c: Ditto.
171         * mep/min.ld: Ditto.
172         * mep/read.c: Ditto.
173         * mep/sbrk.c: Ditto.
174         * mep/sdram-crt0.S: Ditto.
175         * mep/sdram-crtn.S: Ditto.
176         * mep/simnovec-crt0.S: Ditto.
177         * mep/simple.ld: Ditto.
178         * mep/simsdran-crt0.S: Ditto.
179         * mep/syscalls.S: Ditto.
180         * mep/write.c: Ditto.
181
182 2007-01-19  Kazunori Asayama <asayama@sm.sony.co.jp>
183
184         * spu/syscalls.c: Replace vector with __vector.
185
186 2007-01-09  Ben Elliston  <bje@au.ibm.com>
187
188         * spu/exit.c (_exit): Finish with an infinite loop to eliminate a
189         warning about this noreturn function returning.
190
191 2007-01-04  Kazu Hirata  <kazu@codesourcery.com>
192
193         Merge from newlib-csl-20060320-branch:
194         2006-12-22  Nathan Sidwell  <nathan@codesourcery.com>
195
196         libgloss/
197         * m68k/Makefile.in (CF_ISRS): Remove now shared routines.
198         * m68k/cf-crt0.S (__reset): Define here.
199         * m68k/cf-isrs.c: Share some ISRS.  Add aliases for each IRQ slot.
200         * m68k/cf-isv.S: Move to .interrupt_vector section.  Make each
201         slot a unique routine.
202         * m68k/cf.sc: Adjust for .interrupt_vector section.
203
204         libgloss/
205         * m68k/Makefile.in (m5273c3): Rename to ...
206         (m5272c3): ... here to fix typo.
207         (m5249c3): New.
208         (CF_BOARDS): Add it.
209
210 2006-01-03  Kazu Hirata  <kazu@codesourcery.com>
211
212         * arm/Makefile (RDPMON_OBJS): Add _exit.o and _kill.o.
213         (RDIMON_OBJS): Define in terms of RDPMON_OBJS.
214         (rdimon-_exit.o, rdimon-_kill.o): New.
215         * arm/_exit.c, arm/_kill.c: New.
216         * arm/syscalls.c (_exit, _kill): Remove.
217
218 2007-01-03  Kazu Hirata  <kazu@codesourcery.com>
219
220         Merge from newlib-csl-20060320-branch:
221         2006-12-22  Nathan Sidwell  <nathan@codesourcery.com>
222
223         * m68k/cf-crt0.S (__start): Adjust semihosting.
224
225 2007-01-02  Kazu Hirata  <kazu@codesourcery.com>
226
227         Merge from newlib-csl-20060320-branch:
228         2006-12-22  Nathan Sidwell  <nathan@codesourcery.com>
229
230         * m68k/cf-hosted.S (__hosted): Adjust semihosting.
231
232 2007-01-02  Ben Elliston  <bje@au.ibm.com>
233
234         * spu/time.c (time): Cast new sys.time value to unsigned int.
235
236 2006-12-25  Kazu Hirata  <kazu@codesourcery.com>
237
238         * arm/syscalls.c (_unlink, _system, _rename): Cast arguments
239         to do_AngelSWI to int.
240
241         * arm/licfunc.c (do_AngelSWI): Remove.
242         * arm/syscalls.c (do_AngelSWI): Remove.
243         * arm/swi.h (do_AngelSWI): New.
244
245 2006-12-18  Kazu Hirata  <kazu@codesourcery.com>
246
247         Merge from newlib-csl-20060320-branch:
248         2006-12-15  Daniel Jacobowitz  <dan@codesourcery.com>
249
250         * m68k/fido-crt0.S (_vector_table): Reference
251         _PrivilegeViolationHandler.
252
253         2006-12-15  Daniel Jacobowitz  <dan@codesourcery.com>
254
255         * m68k/fido-crt0.S (_start): Set %vbr for context 0 in
256         RAM configs.
257         * m68k/fido.sc: Clean up formatting.  Add comments.  Move
258         stack and heap end to SDRAM for SRAM and SDRAM configurations.
259         Put RedBoot application text in SRAM.
260
261         2006-12-13  Nathan Sidwell  <nathan@codesourcery.com>
262
263         * m68k/Makefile (install_cf): Don't loop over files here.  Only
264         install sources for the default multilib.
265         (install_fido): Likewise.
266         (install_io): Install bsps in one go.
267
268         2006-12-01  Nathan Sidwell  <nathan@codesourcery.com>
269                     Kazu Hirata  <kazu@codesourcery.com>
270
271         * configure.in: Recognize fido-*-*.
272         * configure: Regenerate.
273         * m68k/Makefile.in (CF_ISRS): Use addprefix.
274         (FIDO_CRT0, FIDO_BSP, FIDO_OBJS, FIDO_HANDLERS,
275         FIDO_UNHOSTED_SCRIPTS, FIDO_HOSTED_SCRIPTS, FIDO_SCRIPTS,
276         FIDO_SOURCES, all_fido, fido-%-crt0.o, fido-rom.ld,
277         fido-rom-hosted.ld, fido-sram.ld, fido-sram-hosted.ld,
278         fido-sdram.ld, fido-sdram-hosted.ld, fido-redboot.ld,
279         install_fido): New.
280         * m68k/asm.h (mbb): New.
281         * m68k/configure.in (DO): Check for __mfido__.
282         * m68k/configure: Regenerate.
283         * m68k/fido-_exit.c, m68k/fido-crt0.S, m68k/fido-handler.c,
284         m68k/fido-hosted.S, m68k/fido-sbrk.c, m68k/fido.h,
285         m68k/fido.sc, m68k/fido_profiling.h: New.
286
287 2006-12-18  Ben Elliston  <bje@au.ibm.com>
288
289        * spu/stat.c (stat): Cast new sys.pathname value to unsigned int.
290
291 2006-12-13  Ben Elliston  <bje@au.ibm.com>
292
293         * libnosys/_exit.c (_exit): Finish with an infinite loop to
294         eliminate a warning about this noreturn function returning.
295
296 2006-12-13  Sa Liu  <saliu@de.ibm.com>
297
298         * spu/access.c: New file
299         * spu/dup.c: New file
300         * spu/ftruncate.c: New file
301         * spu/jsre.h: add structures for new functions
302         * spu/time.c: New file
303         * spu/Makefile.in (access.o, dup.o, ftruncate.o, time.o): New targets.
304
305 2006-12-12  Ben Elliston  <bje@au.ibm.com>
306
307         * configure.in: Remove superfluous semicolons.
308         * configure: Regenerate.
309
310 2006-12-11 Kazu Hirata <kazu@codesourcery.com>
311
312         Merge from newlib-csl-20060320-branch:
313         2006-12-01  Nathan Sidwell  <nathan@codesourcery.com>
314                     Kazu Hirata  <kazu@codesourcery.com>
315
316         * m68k/Makefile.in (CF_ISRS): Use addprefix.
317
318         2006-11-01 Nathan Sidwell <nathan@codesourcery.com>
319
320         * m68k/Makefile.in (CFLAGS): Do not clear.  Add to all compilations.
321         (ARFLAGS): Remove commented out definition.
322
323
324         * m68k/configure.in (DO) Set to list of target cpu families.
325         * m68k/configure: Rebuilt.
326         * m68k/Makefile.in (DO): New.
327         (UNHOSTED_BSP, UNHOSTED_OBJS, HOSTED_BSP, HOSTED_OBJS): Move
328         later.
329         (m5208evb, m5213evb, m52235evb, m5235evb, m5273c3, m5275evb,
330         m5282evb, m5329evb, m5485evb): Move earlier.
331         (all): Add all_$DO dependencies.
332         (all_cf, all_m68k): New targets, depend on cf & m68k bsps as
333         appropriate.
334         (m%-ram.ld, m%-rom.ld, m%-ram-hosted.ld, m%-rom-hosted.ld): Add
335         'm' prefix.
336         (install): Add install_$DO dependencies.
337         (install_cf, install_m68k): New targets.  Perform cf and m68k
338         installs as appropriate.
339         (install_io): New, install the io libraries.
340
341
342         2006-10-23 Nathan Sidwell <nathan@codesourcery.com>
343
344         * m68k/Makefile.in (CF_CRT0): Rename to CF_CRT0S, separate hosted
345         & unhosted versions.
346         (CF_OBJS): Add cf-isv.o.
347         (CF_SOURCES): Add cf-isv.S.
348         (cf-hosted-crt0.o, cf-unhosted-crt0.o): New targets.
349         * m68k/cf-isv.S: New, broken out of ...
350         * m68k/cf-crt0.S: ... here.  Add HOSTED & UNHOSTED differences.
351         * m68k/cf-crt1.c (__start1): Add heap_limit argument.
352         (__heap_limit): Define.
353         * m68k/cf-sbrk.c (__heap_limit): Declare.
354         (sbrk): Adjust for __heap_limit.
355         * m68k/cf.sc: Use different crt0's for hosted & unhosted.
356         Install a separate isv.o file.
357         * m68k/io.h (HOSTED_PUTCHAR): Replace with ...
358         (HOSTED_INIT_SIM): ... this.
359
360
361         2006-10-20 Nathan Sidwell <nathan@codesourcery.com>
362
363         * m68k/Makefile.in (CF_BOARDS): Add m5275evb.
364         (m5275evb): New board.
365
366
367         2006-10-20 Vladimir Prus <vladimir@codesourcery.com>
368
369         * m68k/cf.sc: Add linkonce sections and
370         DWARF sections.
371
372
373         2006-10-07 Nathan Sidwell <nathan@codesourcery.com>
374
375         * m68k/Makefile.in: Adjust Coldfire rules.
376         (BDM_CRT0, BDM_BSP, BDM_OBJS, BDM_ISRS): Rename to ...
377         (CF_CRT0, CF_BSP, CF_OBJS, CF_ISRS): ... here.  Adjust.
378         (BDM_OTHER_OBJS): Remove.
379         (BDM_SYSOBJS): Rename to ...
380         (UNHOSTED_OBJS): ... here.  Adjust.
381         (UNHOSTED_BSP, HOSTED_OBJS, HOSTED_BSP): New.
382         (CF_HOSTED_SCRIPTS): New.
383         (CF_SCRIPTS, CF_SOURCES): Adjust.
384         * m68k/cf.sc: Add IO library variable.
385         * m68k/bdm-crt0.S, m68k/bdm-crt1.c, m68k/bdm-isrs.c,
386         m68k/bdm-sbrk.c, m68k/bdm-semihost.S: Rename to ...
387         * m68k/cf-crt0.S, m68k/cf-crt1.c, m68k/cf-isrs.c, m68k/cf-sbrk.c,
388         m68k/cf-hosted.S: ... here.
389         * m68k/cf-exit.c: New.
390         * m68k/bdm-gdb.h, m68k/bdm-semihost.h: Merge into ...
391         * m68k/io.h: ... here.  Add unhosted support.  Adjust conversion
392         function names.
393         * m68k/bdm-gdb.c: Rename to ...
394         * m68k/io-gdb.c: ... here.  Adjust names of conversion functions.
395         * m68k/bdm-close.c, m68k/bdm-exit.c, m68k/bdm-fstat.c,
396         m68k/bdm-gettimeofday.c, m68k/bdm-isatty.c, m68k/bdm-lseek.c,
397         m68k/bdm-open.c, m68k/bdm-read.c, m68k/bdm-rename.c,
398         m68k/bdm-stat.c, m68k/bdm-system.c, m68k/bdm-time.c,
399         m68k/bdm-unlink.c, m68k/bdm-write.c: Rename to ...
400         * m68k/io-close.c, m68k/io-exit.c, m68k/io-fstat.c,
401         m68k/io-gettimeofday.c, m68k/io-isatty.c, m68k/io-lseek.c,
402         m68k/io-open.c, m68k/io-read.c, m68k/io-rename.c, m68k/io-stat.c,
403         m68k/io-system.c, m68k/io-time.c, m68k/io-unlink.c,
404         m68k/io-write.c: ... here.  Include io.h. Adjust for hosted &
405         unhosted libraries.  Adjust names of gdb conversion functions.
406
407
408         2006-09-29 Nathan Sidwell <nathan@codesourcery.com>
409
410         * m68k/bdm-semihost.S: Add more comments. Make instruction weirder.
411
412         2006-09-22 Nathan Sidwell <nathan@codesourcery.com>
413
414         * m68k/bdm-crt1.c (hardware_init_hook): Use #defines for CACR bits.
415
416         2006-09-18 Nathan Sidwell <nathan@codesourcery.com>
417
418         * m68k/Makefile.in: Don't force a frame pointer on the ISRs.
419         * m68k/bdm-crt1.c (__start1): Don't set the VBR here.
420         (hardeare_init_hook): Define weakly.  Set VBR here, enable caching
421         if supported.
422
423
424         * m68k/Makefile.in (bdm-semihost.o): Build from bdm-semihost.S.
425         * m68k/bdm-semihost.c: Remove.
426         * m68k/bdm-semihost.S: New.
427         * m68k/bdm-crt0.S: Don't install semihosting trap handler.
428         * m68k/bdm-close.c, bdm-exit.c, bdm-fstat.c, bdm-gettimeofday.c,
429         bdm-isatty.c, bdm-lseek.c, bdm-open.c, bdm-read.c, bdm-rename.c,
430         bdm-stat.c, bdm-system.c, bdm-unlink.c, bdm-write.c): Update.
431         * m68k/bdm-isrs.c: Update comment.
432         * m68k/bdm-semihost.h (BDM_TRAPNUM, BDM_FUNC_REG, BDM_ARG_REG,
433         BDM_TRAP): Remove.
434         (__bdm_semihost): Declare.
435
436
437         2006-09-15 Nathan Sidwell <nathan@codesourcery.com>
438
439         * m68k/Makefile.in (BDM_OTHER_OBJS): Remove sbrk.o.
440         (BDM_SYSOBJS): Add bdm-sbrk.o.
441         * m68k/bdm-sbrk.c: New.
442
443
444         2006-09-06 Nathan Sidwell <nathan@codesourcery.com>
445
446         * m68k/Makefile.in (CF_SOURCES): New.
447         (install): Install them.
448
449
450         2006-09-01 Nathan Sidwell <nathan@codesourcery.com>
451
452         * m68k/cf.sc: Add .jcr section to .text.
453
454 2006-12-11  Ben Elliston  <bje@au.ibm.com>
455
456         * configure.in: Remove extra whitespace from config_testsuite =
457         VALUE statements to eliminate shell errors.
458         * configure: Regenerate.
459
460 2006-12-08  Sa Liu  <saliu@de.ibm.com>
461
462         * spu/exit.c (libgloss_exit): Rename from this ..
463         (_exit): .. to this. Overhaul.
464         (exit): Remove.
465         * spu/crt0.S, spu/crti.S, spu/crtn.S: New files.
466         * spu/crt0.C, spu/init.c: Remove.
467         * spu/configure.in (AC_INIT): Check for crt0.S, not crt0.C.
468         * spu/configure: Regenerate.
469         * spu/Makefile.in (crti.o, crtn.o, crt1.o, crt2.o): New targets.
470         (OBJS): Remove init.o.
471         (CRTOBJS): New.
472         (OUTPUTS): Add $(CRTOBJS).
473
474 2006-11-27  Jeff Johnston  <jjohnstn@redhat.com>
475
476         * mips/crt0.S: Fix preprocessor statements from previous patch
477         to be ANSI.
478
479 2006-11-24  Thiemo Seufer  <ths@mips.com>
480             Nigel Stephens  <nigel@mips.com>
481
482         * mips/crt0.S (_start): Use all available float registers. Don't touch
483         SR_PE on post-mips2 CPUs, it means soft reset there.
484
485 2006-11-22  Luca Barbato  <lu_zero@gentoo.org>
486
487         * spu/syscalls.c: Include spu_intrinsics.h to provide vector keyword.
488
489 2006-11-17  Jeff Johnston  <jjohnstn@redhat.com>
490
491         * mn10300/Makefile.in: Add spaces after do in "for" loop.
492
493 2006-11-08  Jie Zhang  <jie.zhang@analog.com>
494
495         * bfin/configure.in: New.
496         * bfin/crt0.S: New.
497         * bfin/Makefile.in: New.
498         * bfin/syscalls.c: New.
499         * bfin/aclocal.m4: Generate.
500         * bfin/configure: Ditto.
501         * configure.in: Add support for bfin-*-*.
502         * configure: Regenerate.
503         * syscall.h (SYS_argc): Define.
504         (SYS_argnlen): Define.
505         (SYS_argn): Define.
506
507 2006-10-10  Thiemo Seufer  <ths@mips.com>
508
509         * mips/Makefile.in: Add INCLUDES to local compile rules.
510
511 2006-10-06  Jeff Johnston  <jjohnstn@redhat.com>
512
513         * Makefile.in: Add CFLAGS_FOR_TARGET and CCASFLAGS to
514         FLAGS_TO_PASS.
515
516 2006-10-03  Jeff Johnston  <jjohnstn@redhat.com>
517
518         * arm/linux-syscalls0.c: Rewrite bx insn architecture flag check 
519         to avoid use of __ARM_ARCH__.
520
521 2006-10-02  Nick Clifton  <nickc@redhat.com>
522
523         * arm/linux-syscalls0.c: Add arm architecture flag
524         checks around bx insn.
525
526 2006-09-07  Masaki Muranaka  <monaka@monami-software.com>
527
528         * xstormy16/Makefile.in (clean): Fix a mismatched parenthesis.
529
530 2006-09-01  Kazu Hirata  <kazu@codesourcery.com>
531
532         Merge from newlib-csl-20060320-branch:
533         2006-08-31  Nathan Sidwell  <nathan@codesourcery.com>
534
535         * m68k/bdm-crt1.c: Call hardware_init_hook before copying
536         initialized data.
537
538         * m68k/Makefile.in (CF_BDM_SCRIPTS): Rename to CF_RAM_SCRIPTS.
539         (CF_SCRIPTS): Update.
540         (%-bdm.ld): Rename to %-ram.ld.
541
542         2006-08-25  Nathan Sidwell  <nathan@codesourcery.com>
543
544         * m68k/Makefile.in (DBUG_BSP, DBUG_OBJS): Remove.
545         (BDM_CRT0): New.
546         (BDM_OBJS): Add bdm-crt1.o.
547         (BDM_OTHER_OBJS): Remove print.o putnum.o
548         (CF_BOARDS): New.
549         (CF_BDM_SCRIPTS): Generated name of ram scripts.
550         (CF_ROM_SCRIPTS): Generated name of rom scripts.
551         (CF_SCRIPTS): Adjust.
552         (all): Add BDM_CRT0.
553         (bdm-crt0.o, bdm-crt1.o): New targets.
554         (bdm-isv.o): Remove.
555         (m5208evb, m5213evb, m52235evb, m5235evb, m5273c3, m5282evb,
556         m5329evb, m5485evb): New.
557         (%-bdm.ld, %-rom.ld): New. Replace individual linker script rules.
558         (install): Remove DBUG installs.
559         * m68k/bdm-crt0.S: New.
560         * m68k/bdm-crt1.c: New.
561         * m68k/bdm-exit.c: Call __reset.
562         * m68k/bdm-isv.c: Remove.
563         * m68k/cf.sc: Adjust to produce either rom or ram images.
564         * m68k/dbug-exit.S, m68k/dbug-inbyte.S, m68k/dbug-outbyte.S: Remove.
565
566         2006-07-24  Nathan Sidwell  <nathan@codesourcery.com>
567
568         Bug 844
569         * m68k/cf.sc: Set entry point to _start.
570         * m68k/crt0.X (_start): New name for entrypoint
571         (start): Weak alias for start.
572
573         2006-06-09  Nathan Sidwell  <nathan@codesourcery.com>
574
575         * m68k/bdm-system.c (_system): Support system(NULL).
576
577         2006-06-08  Nathan Sidwell  <nathan@codesourcery.com>
578
579         * m68k/bdm-system.c (_system): Properly encode non failure exit
580         code.
581
582         2006-06-05  Nathan Sidwell  <nathan@codesourcery.com>
583
584         * m68k/Makefile.in (BDM_SYSOBJS): Remove bdm-inbyte.o.
585         Add bdm-time.o.
586         * m68k/bdm-close.c: Add copyright notice.
587         * m68k/bdm-fstat.c: Add copyright notice.
588         * m68k/bdm-gettimeofday.c: Add copyright notice.
589         * m68k/bdm-inbyte.c: Remove.
590         * m68k/bdm-isatty.c: Add copyright notice.
591         * m68k/bdm-lseek.c: Add copyright notice. Fix &/| thinko.
592         * m68k/bdm-open.c: Add copyright notice.
593         * m68k/bdm-read.c: Add copyright notice.
594         * m68k/bdm-rename.c: Add copyright notice.
595         * m68k/bdm-stat.c: Add copyright notice.
596         * m68k/bdm-system.c: Add copyright notice.
597         * m68k/bdm-time.c: New.
598         * m68k/bdm-unlink.c: Add copyright notice.
599         * m68k/bdm-write.c: Add copyright notice.
600
601         2006-05-25  Nathan Sidwell  <nathan@codesourcery.com>
602
603         * m68k/Makefile.in (m52235-dbug.ld, m52235-bdm.ld): New
604         scripts.
605
606         2006-05-24  Nathan Sidwell  <nathan@codesourcery.com>
607
608         * m68k/Makefile.in (BDM_SYSOBJS): Remove bdm-outbyte.o.
609         * m68k/bdm-outbyte.c: Delete.
610         * m68k/bdm-semihost.h (BDM_OUTBYTE): Mark as obsolete.
611
612         2006-05-22  Sandra Loosemore <sandra@codesourcery.com>
613
614         * m68k/bdm-semihost.h: Add new constants for additional
615         semihosting functions.  Add new BDM_TRAP macro to encapsulate
616         inline asm.
617         * m68k/bdm-exit.c (_exit): Use new BDM_TRAP macro.
618         * m68k/bdm-outbyte.c (outbyte): Ditto.
619         * m68k/bdm-isrs.c, m68k/bdm-isv.c: Former BDM_TRAP
620         now called BDM_TRAPNUM.
621         * m68k/bdm-gdb.h, m68k/bdm-gdb.c: New files
622         containing declarations and conversion functions for GDB's fileio
623         protocol.
624         * m68k/bdm-close.c: New file to define corresponding function.
625         * m68k/bdm-fstat.c: Ditto.
626         * m68k/bdm-gettimeofday.c: Ditto.
627         * m68k/bdm-isatty.c: Ditto.
628         * m68k/bdm-lseek.c: Ditto.
629         * m68k/bdm-open.c: Ditto.
630         * m68k/bdm-read.c: Ditto.
631         * m68k/bdm-rename.c: Ditto.
632         * m68k/bdm-stat.c: Ditto.
633         * m68k/bdm-system.c: Ditto.
634         * m68k/bdm-unlink.c: Ditto.
635         * m68k/bdm-write.c Ditto.
636         * m68k/Makefile.in: Add dependencies for new files.
637
638         2006-03-29  Nathan Sidwell  <nathan@codesourcery.com>
639
640         * m68k/bdm-isv.c (software_init_hook): Fix trap numbering.
641
642         * m68k/Makefile.in (CF_SCRIPTS): Add m5329 board.
643         Reorder.
644         (*-dbug.ld, *-bdm.ld): Add appropriate IO definition.
645         (m5329evb-dbug.ld, m5329evb-bdm.ld): New.
646         * cf.sc (GROUP): Revert previous change.  Add IO library.
647
648         * m68k/Makefile.in (BDM_BSP, BDM_OBJS, BDM_ISRS): New.
649         (CF_SCRIPTS): Rename dbug scripts.  Add bdm scripts. Add m5485
650         scripts.
651         (all): Add new targets.
652         (BDM_BSP): New target.
653         (bdm-isv.o, bdm-exit.o, bdm-outbyte.o, bdm-semihost.o): New
654         targets.
655         (BDM_ISRS): New targets.
656         (m5208evb.ld, m5213evb.ld, m5235evb.ld, m5272c3.ld, m5282evb.ld):
657         Rename and adjust.
658         (m5485evb-dbug): New.
659         (m5208evb-bdm.ld, m5213evb-bdm.ld, m5235evb-bdm.ld,
660         m5272c3-bdm.ld, m5282evb-bdm.ld, m5485evb-bdm.ld): New.
661         (install): Add BDM_BSP.
662         * m68k/bdm-exit.c: New
663         * m68k/bdm-inbyte.c: New
664         * m68k/bdm-outbyte.c: New
665         * m68k/bdm-semihost.c: New
666         * m68k/bdm-semihost.h: New
667         * m68k/bdm-isrs.c: New.
668         * m68k/bdm-isv.c: New.
669         * dbug-cf.sc: Renamed to ...
670         * cf.sc: ... here.  Add bdm flexibility. Remove GROUP
671
672         2006-05-22  Sandra Loosemore <sandra@codesourcery.com>
673
674         * m68k/bdm-semihost.h: Add new constants for additional
675         semihosting functions.  Add new BDM_TRAP macro to encapsulate
676         inline asm.
677         * m68k/bdm-exit.c (_exit): Use new BDM_TRAP macro.
678         * m68k/bdm-outbyte.c (outbyte): Ditto.
679         * m68k/bdm-isrs.c, m68k/bdm-isv.c: Former BDM_TRAP
680         now called BDM_TRAPNUM.
681         * m68k/bdm-gdb.h, m68k/bdm-gdb.c: New files
682         containing declarations and conversion functions for GDB's fileio
683         protocol.
684         * m68k/bdm-close.c: New file to define corresponding function.
685         * m68k/bdm-fstat.c: Ditto.
686         * m68k/bdm-gettimeofday.c: Ditto.
687         * m68k/bdm-isatty.c: Ditto.
688         * m68k/bdm-lseek.c: Ditto.
689         * m68k/bdm-open.c: Ditto.
690         * m68k/bdm-read.c: Ditto.
691         * m68k/bdm-rename.c: Ditto.
692         * m68k/bdm-stat.c: Ditto.
693         * m68k/bdm-system.c: Ditto.
694         * m68k/bdm-unlink.c: Ditto.
695         * m68k/bdm-write.c Ditto.
696         * m68k/Makefile.in: Add dependencies for new files.
697
698 2006-08-30  Kazunori Asayama  <asayama@sm.sony.co.jp>
699
700         * spu/syscalls.c: Add a new argument to _send_to_ppe() to 
701         specify signal code.
702         * spu/jsre.h: Update declaration of _send_to_ppe().
703         * spu/close.c: Replace _send_to_ppe_0x2101() by _send_to_ppe().
704         * spu/fstat.c: Ditto.
705         * spu/lseek.c: Ditto.
706         * spu/open.c: Ditto.
707         * spu/read.c: Ditto.
708         * spu/stat.c: Ditto.
709         * spu/unlink.c: Ditto.
710         * spu/write.c: Ditto.
711
712 2006-08-30  Kazunori Asayama  <asayama@sm.sony.co.jp>
713
714         * spu/Makefile.in: Add dependency.
715
716 2006-08-24  Paul Brook  <paul@codesourcery.com>
717
718         * arm/linux-crt0.c: Disable Arm stub for Thumb-2.
719
720 2006-08-23  Kazunori Asayama  <asayama@sm.sony.co.jp>
721
722         * spu/Makefile.in: Add new object files.
723         * spu/syscalls.c: Move each system call to individual file.
724         * spu/jsre.h: Add declaration of _send_to_ppe_0x2101().
725         * spu/close.c: New file. Moved from spu/syscalls.c.
726         * spu/fstat.c: Likewise.
727         * spu/getpid.c: Likewise.
728         * spu/isatty.c: Likewise.
729         * spu/kill.c: Likewise.
730         * spu/lseek.c: Likewise.
731         * spu/open.c: Likewise.
732         * spu/read.c: Likewise.
733         * spu/stat.c: Likewise.
734         * spu/unlink.c: Likewise.
735         * spu/write.c: Likewise.
736
737 2006-08-21  David Ung  <davidu@mips.com>
738
739         * mips/Makefile.in: Add rule for cygmon.o and pass the -mno-mips16
740         option since it uses the syscall instruction.
741
742 2006-08-16  Joel Schopp  <jschopp@austin.ibm.com>
743
744         * spu/Makefile.in: Add special compiler
745         options to reduce size.
746
747 2006-08-16  Joel Schopp  <jschopp@austin.ibm.com>
748
749         * spu/jsre.h(JSRE_STAT): New define.
750         (syscall_stat_t): New type.
751         * spu/syscalls.c(stat): New syscall.
752
753 2006-08-16  Joel Schopp  <jschopp@austin.ibm.com>
754
755         * configure.in: Add spu support.
756         * configure: Regenerated.
757         * spu/Makefile.in: New file.
758         * spu/aclocal.m4: Ditto.
759         * spu/configure: Ditto.
760         * spu/configure.in: Ditto.
761         * spu/crt0.c: Ditto.
762         * spu/exit.c: Ditto.
763         * spu/init.c: Ditto.
764         * spu/jsre.h: Ditto.
765         * spu/sbrk.c: Ditto.
766         * spu/syscalls.c: Ditto.
767
768 2006-07-05  Shaun Jackman  <sjackman@gmail.com>
769
770         * arm/linux-crt0.S: Remove file.
771         * arm/linux-crt0.c: New file. Supports PIC code.
772
773 2006-07-04  Shaun Jackman  <sjackman@gmail.com>
774
775         * arm/linux-syscalls0.S (ftruncate, getegid, geteuid, getgid,
776         getgroups, getpgid, getpgrp, getuid, lchown, pause, pipe,
777         setpgid, setgid, setsid, setuid, sigprocmask, sync, uname): New
778         system call.
779
780 2006-06-30  DJ Delorie  <dj@redhat.com>
781
782         * m32c/crt0.S (done_inilist): Fix dwarf2 address sizes.
783
784 2006-06-23  Shaun Jackman  <sjackman@gmail.com>
785
786         * arm/elf-linux.specs: New file.
787
788 2006-06-13  Sandra Loosemore <sandra@codesourcery.com>
789
790         * arm/syscalls.c (_unlink, isatty, _system, _rename):
791         Make them do something useful in the ARM_RDI_MONITOR case.
792
793 2006-06-08  Fred Fish  <fnf@specifix.com>
794
795         * mips/idt.ld, mips/idt32.ld, mips/idt64.ld, mips/nullmon.ld,
796         mips/pmon.ld:  Keep special sections generated by mips gcc.
797
798 2006-06-05  Shaun Jackman  <sjackman@gmail.com>
799
800         * arm/linux-syscalls0.S (reboot): Remove.
801         * arm/linux-syscalls1.c (reboot): New function.
802
803 2006-06-05  Shaun Jackman  <sjackman@gmail.com>
804
805         * arm/syscalls.c (kill) [ARM_RDI_MONITOR]: Use the signal
806         argument to choose an ADP exception reason.
807         * arm/libcfunc.c (abort): Remove this function.
808
809 2006-05-30  Shaun Jackman  <sjackman@gmail.com>
810
811         * arm/Makefile.in: Add Linux syscall interface.
812         * arm/linux-crt0.S: New file.
813         * arm/linux-syscall.h: New file.
814         * arm/linux-syscalls0.S: New file.
815         * arm/linux-syscalls1.c: New file.
816
817 2006-05-23  Fred Fish  <fnf@specifix.com>
818
819         * mips/configure.in: Change mipsisa64-*-* to
820         mipsisa64*-*-* to catch minor variations like
821         mipsisa64sb1.
822         * mips/configure: Regenerated.
823
824 2006-05-10  Jeff Johnston  <jjohnstn@redhat.com>
825
826         * Makefile.in: Pass some additional flags in FLAGS_TO_PASS.
827         * configure.in: Add additional flags when creating Makefile.
828         * configure: Regenerated.
829         * arm/configure
830         * arm/configure.in: Set with_multisubdir when creating Makefile.
831         * cris/configure.in: Ditto.
832         * d30v/configure.in: Ditto.
833         * frv/configure.in: Ditto.
834         * i386/configure.in: Ditto.
835         * iq2000/configure.in: Ditto.
836         * libnosys/configure.in: Ditto.
837         * m32c/configure.in: Ditto.
838         * m32r/configure.in: Ditto.
839         * m68hc11/configure.in: Ditto.
840         * m68k/configure.in: Ditto.
841         * mcore/configure.in: Ditto.
842         * mips/configure.in: Ditto.
843         * mn10200/configure.in: Ditto.
844         * mn10300/configure.in: Ditto.
845         * mt/configure.in: Ditto.
846         * pa/configure.in: Ditto.
847         * rs6000/configure.in: Ditto.
848         * sparc/configure.in: Ditto.
849         * cris/configure: Regenerated.
850         * d30v/configure: Ditto.
851         * frv/configure: Ditto.
852         * i386/configure: Ditto.
853         * iq2000/configure: Ditto.
854         * libnosys/configure: Ditto.
855         * m32c/configure: Ditto.
856         * m32r/configure: Ditto.
857         * m68hc11/configure: Ditto.
858         * m68k/configure: Ditto.
859         * mcore/configure: Ditto.
860         * mips/configure: Ditto.
861         * mn10200/configure: Ditto.
862         * mn10300/configure: Ditto.
863         * mt/configure: Ditto.
864         * pa/configure: Ditto.
865         * rs6000/configure: Ditto.
866         * sparc/configure: Ditto.
867
868 2006-04-19  Jeff Johnston  <jjohnstn@redhat.com>
869
870         * configure.in: Modified to support autoconf 2.59.
871         * */configure.in: Ditto.
872         * configure: Regenerated.
873         * */configure: Ditto.
874         * wince/aclocal.m4: Ditto.
875         * acinclude.m4: New file.
876         * aclocal.m4: Ditto.
877         * arm/aclocal.m4: Ditto.
878         * cris/aclocal.m4: Ditto.
879         * crx/aclocal.m4: Ditto.
880         * d30v/aclocal.m4: Ditto.
881         * fr30/aclocal.m4: Ditto.
882         * frv/aclocal.m4: Ditto.
883         * hp74x/aclocal.m4: Ditto.
884         * i386/aclocal.m4: Ditto.
885         * i960/aclocal.m4: Ditto.
886         * iq2000/aclocal.m4: Ditto.
887         * libnosys/aclocal.m4: Ditto.
888         * m32c/aclocal.m4: Ditto.
889         * m32r/aclocal.m4: Ditto.
890         * m68hc11/aclocal.m4: Ditto.
891         * m68k/aclocal.m4: Ditto.
892         * mcore/aclocal.m4: Ditto.
893         * mips/aclocal.m4: Ditto.
894         * mn10200/aclocal.m4: Ditto.
895         * mn10300/aclocal.m4: Ditto.
896         * mt/aclocal.m4: Ditto.
897         * pa/aclocal.m4: Ditto.
898         * rs6000/aclocal.m4: Ditto.
899         * sparc/aclocal.m4: Ditto.
900         * sparc/libsys/aclocal.m4: Ditto.
901         * xstormy16/aclocal.m4: Ditto.
902
903 2006-04-18  Mark Mitchell  <mark@codesourcery.com>
904
905         * doc/porting.texi: Document libgloss build conventions.
906
907 2006-03-22  Nathan Sidwell  <nathan@codesourcery.com>
908
909         * mt/startup-16-002.S (.internal_io): Make @nobits.
910         * mt/startup-16-003.S (.internal_io): Make @nobits.
911         * mt/startup-ms2.S (.internal_io): Make @nobits.
912
913 2006-03-02  DJ Delorie  <dj@redhat.com>
914
915         * m32c/exit.S: Preserve r1.
916
917 2006-02-24  Paul Brook  <paul@codesourcery.com>
918
919         * arm/redboot-crt0.S: Use cps in Thumb-2 mode.
920
921 2006-02-22  Nathan Sidwell  <nathan@codesourcery.com>
922
923         * m68k/Makefile.in (CF_SCRIPTS): New.
924         (all): Add CF_SCRIPTS.
925         (m5208evb.ld, m5213evb.ld, m5235evb.ld, m5272c3.ld,
926         m5282evb.ld): New targets
927         (install): Iterate over CF_SCRIPTS.
928         * m68k/crt0.S: Don't use dbra on any cf chips.
929         * m68k/dbug-cf.sc: New.
930
931 2006-02-07  Paul Brook  <paul@codesourcery.com>
932
933         * arm/crt0.S: Add Thumb-2 startup code.
934         * arm/redboot-crt0.S: Ditto.
935         * arm/libcfunc.c (do_AngelSWI): Use AngelSWIInsn.
936         * arm/swi.h (AngelSWIInsn, AngelSWIAsm): Define.
937         * arm/trap.S: Disable for Thumb-2.
938
939 2006-01-18  Nathan Sidwell  <nathan@codesourcery.com>
940
941         * mt/ms2.ld (.sram): Correct typo in section names.
942
943 2006-01-16  Nathan Sidwell  <nathan@codesourcery.com>
944
945         * mt/Makefile.in (SCRIPTS, CRT0): Add ms2 files.
946         (crt0-ms2.o): New target.
947         * mt/crt0-ms2.S, mt/exit-ms2.c, mt/ms2.ld, mt/startup-ms2.S: New.
948
949 2006-01-04  Paul Brook  <paul@codesourcery.com>
950
951         * m68k/bcc.ld: Add .got.plt and .got
952         * m68k/idp.ld: Ditto.
953         * m68k/idpgdb: Ditto.
954         * m68k/mvme135.ld: Ditto.
955         * m68k/sbc5204.ld: Ditto.
956         * m68k/sbc5206.ld: Ditto.
957         * m68k/sim.ld: Ditto.
958
959 2005-12-13  DJ Delorie  <dj@redhat.com>
960
961         * m32c/crt0.S: Add support for preinit, init, and fini arrays, and
962         .init and .fini processing.
963         * m32c/crtn.S: Likewise.
964         * m32c/exit.S: Likewise.
965
966 2005-12-13  Nathan Sidwell  <nathan@codesourcery.com>
967
968         * mt/16-002.ld: Change architecture to 'mt'.  Remove
969         SEARCH_DIR.
970         * mt/16-003.ld: Likewise.
971         * mt/64-001.ld: Likewise.
972         * mt/Makefile.in: Change comment to reference 'mt' rather than 'ms1'.
973         * mt/crt0.S: Likewise.
974
975 2005-12-12  Nathan Sidwell  <nathan@codesourcery.com>
976
977         * configure.in: Replace ms1 arch with mt arch.
978         * configure: Rebuilt.
979         * mt: Renamed from ms1 dir.
980
981 2005-12-06  Paul Brook  <paul@codesourcery.com>
982
983         * m68k/bcc.ld: Add .text.*, .rodata.*, .data.* and .bss.*.
984         * m68k/idp.ld: Ditto.
985         * m68k/idpgdb: Ditto.
986         * m68k/mvme135.ld: Ditto.
987         * m68k/sbc5204.ld: Ditto.
988         * m68k/sbc5206.ld: Ditto.
989         * m68k/sim.ld: Ditto.
990
991 2005-11-30  Shaun Jackman  <sjackman@gmail.com>
992
993         * libnosys/Makefile.in (OBJS): Add chown, readlink, and symlink.
994         * libnosys/chown.c: New file.
995         * libnosys/readlink.c: New file.
996         * libnosys/symlink.c: New file.
997
998 2005-11-30  Shaun Jackman  <sjackman@gmail.com>
999
1000         * arm/libcfunc.c (clock, sleep, usleep): New functions.
1001         * arm/syscalls.c (_clock): New function.
1002         (_times): Call _clock.
1003
1004 2005-11-17  Shaun Jackman  <sjackman@gmail.com>
1005
1006         * libgloss/arm/libcfunc.c (isatty): Call _isatty. GDB now supports
1007         the IsTTY SWI that _isatty calls.
1008
1009 2005-11-17  Hans-Peter Nilsson  <hp@axis.com>
1010
1011         * cris/linunistd.h: Don't redefine errno as extern int.
1012
1013 2005-10-20  Jeff Johnston  <jjohnstn@redhat.com>
1014
1015         * arm/configure.in: Add AC_SUBST for BUILD_CRT0_TRUE and
1016         BUILD_CRT0_FALSE.
1017         * arm/configure: Regenerate.
1018
1019 2005-10-17  Jeff Johnston  <jjohnstn@redhat.com>
1020
1021         * arm/configure.in: Support building crt0.o when syscalls
1022         are disabled in newlib.
1023         * arm/configure: Regenerated.
1024
1025 2005-10-03  James E Wilson  <wilson@specifix.com>
1026
1027         * mips/array.ld, mips/cfe.ld, mips/ddb-kseg0.ld, mips/ddb.ld,
1028         mips/dve.ld, mips/idt.ld, mips/idt32.ld, mips/idt64.ld,
1029         mips/idtecoff.ld, mips/jmr3904app-java.ld, mips/jmr3904app.ld,
1030         jmr3904dram-java.ld, mips/jmr3904dram.ld, mips/lsi.ld, mips/nullmon.ld,
1031         mips/pmon.ld: Add support for .bss.* sections.
1032
1033 2005-09-23  James E Wilson  <wilson@specifix.com>
1034
1035         * mips/array.ld, mips/cfe.ld, mips/ddb-kseg0.ld, mips/ddb.ld,
1036         mips/dve.ld, mips/idt.ld, mips/idt32.ld, mips/idt64.ld,
1037         mips/idtecoff.ld, mips/jmr3904app-java.ld, mips/jmr3904app.ld,
1038         jmr3904dram-java.ld, mips/jmr3904dram.ld, mips/lsi.ld, mips/nullmon.ld,
1039         mips/pmon.ld: Change x* to x.* in existing linkonce lines.  Add
1040         support for .gnu.linkonce.b.*.
1041
1042 2005-08-30  Jeff Johnston  <jjohnstn@redhat.com>
1043
1044         * rs6000/Makefile.in (VPATH): Use colon as separator.
1045
1046 2005-08-24  Aldy Hernandez  <aldyh@redhat.com>
1047
1048         * ms1/access.c: Change copyright notice.
1049
1050 2005-08-19  DJ Delorie  <dj@redhat.com>
1051
1052         * m32c/Makefile.in (m16cmon.ld, m32cmon.ld): Fix output names.
1053         (*.o): Add dependencies.
1054         * m32c/m32csys.h: Move syscall location to 0x400 as per Renesas
1055         recommendations.
1056
1057 2005-08-18  DJ Delorie  <dj@redhat.com>
1058
1059         * m32c/Makefile.in: Block out memory regions reserved for monitors
1060         and simulators.  Add monitor link scripts.
1061
1062 2005-08-16  Shaun Jackman  <sjackman@gmail.com>
1063
1064         * arm/syscalls.c (initialise_monitor_handles): Set
1065         monitor_stderr to the result of SWI_open(":tt", "a")
1066         instead of simply duplicating stdout.
1067
1068 2005-08-10  DJ Delorie  <dj@redhat.com>
1069
1070         * configure.in: Add m32c support.
1071         * configure: Regenerated
1072         * m32c: New directory, Renesas R8C/M16C/M32C support.
1073         * m32c/abort.S m32c/argvlen.S m32c/argv.S m32c/chdir.S, 
1074         m32c/chmod.S m32c/close.S m32c/configure m32c/configure.in,
1075         m32c/crt0.S, m32c/crtn.S, m32c/exit.S, m32c/fstat.S,
1076         m32c/genscript, m32c/getpid.S, m32c/gettimeofday.S,
1077         m32c/heaptop.S, m32c/isatty.S, m32c/kill.S, m32c/link.S,
1078         m32c/lseek.S, m32c/m32csys.h, m32c/m32c.tmpl, m32c/Makefile.in,
1079         m32c/open.S, m32c/read.S, m32c/sbrk.c, m32c/stat.S, m32c/time.S,
1080         m32c/times.S, m32c/unlink.S, m32c/utime.S, m32c/write.S: New files
1081
1082 2005-08-02  Shaun Jackman  <sjackman@gmail.com>
1083
1084         * libgloss/arm/libcfunc.c (isatty): New function.
1085
1086 2005-08-02  Shaun Jackman  <sjackman@gmail.com>
1087
1088         * libgloss/arm/syscalls.c (_exit): Call _kill with the second
1089         argument set to -1, which is an invalid signal number.
1090         (_kill): Comment and coding style changes only.
1091         (_raise): Remove function.
1092
1093 2005-07-19  Paul Brook  <paul@codesourcery.com>
1094
1095         * arm/crt0.S: Ensure doubleword stack alignment.
1096
1097 2005-07-18  Richard Sandiford  <richard@codesourcery.com>
1098
1099         * mips/array.ld (.sdata): Include .gnu.linkonce.s.*, not
1100         .gnu.linkonce.s*.
1101         (.sbss): Include .sbss.* and .gnu.linkonce.sb.*.
1102         * mips/cfe.ld, mips/ddb-kseg0.ld, mips/ddb.ld, mips/dve.ld,
1103         * mips/idt32.ld, mips/idt64.ld, mips/idtecoff.ld, mips/idt.ld,
1104         * mips/jmr3904app-java.ld, mips/jmr3904app.ld,
1105         * mips/jmr3904dram-java.ld, mips/jmr3904dram.ld,
1106         * mips/lsi.ld, mips/nullmon.ld, mips/pmon.ld: As for mips/array.ld.
1107
1108 2005-07-18  Shaun Jackman  <sjackman@gmail.com>
1109
1110         * libgloss/arm/libcfunc.c (abort): Call _exit instead of the RDI swi.
1111         (alarm): Add the weak attribute.
1112         (pause): New function. Return ENOSYS.
1113         * libgloss/arm/syscalls.c (_getpid): Add the weak attribute.
1114         (_fstat): Ditto.
1115         (_stat): Ditto.
1116         (_link): Ditto. Return ENOSYS.
1117         (_unlink): Call the swi instead of returning -1.
1118         (_raise): Add the weak attribute. Return ENOSYS.
1119         (isatty): Rename to _isatty. Call the swi instead of returning 1.
1120         (_system): Call the swi instead of returning ENOSYS.
1121         (_rename): Ditto.
1122
1123 2005-07-06  Aldy Hernandez  <aldyh@redhat.com>
1124
1125         * configure.in: Add ms1 case.
1126         * configure: Regenerate.
1127         * ms1/16-002.ld: New.
1128         * ms1/16-003.ld: New.
1129         * ms1/64-001.ld: New.
1130         * ms1/access.c: New.
1131         * ms1/chmod.c: New.
1132         * ms1/close.c: New.
1133         * ms1/configure: New.
1134         * ms1/configure.in: New.
1135         * ms1/crt0-16-002.S: New.
1136         * ms1/crt0-16-003.S: New.
1137         * ms1/crt0-64-001.S: New.
1138         * ms1/crt0.S: New.
1139         * ms1/exit-16-002.c: New.
1140         * ms1/exit-16-003.c: New.
1141         * ms1/exit-64-001.c: New.
1142         * ms1/exit.c: New.
1143         * ms1/fstat.c: New.
1144         * ms1/getpid.c: New.
1145         * ms1/gettime.c: New.
1146         * ms1/isatty.c: New.
1147         * ms1/kill.c: New.
1148         * ms1/lseek.c: New.
1149         * ms1/Makefile.in: New.
1150         * ms1/open.c: New.
1151         * ms1/read.c: New.
1152         * ms1/sbrk.c: New.
1153         * ms1/startup-16-002.S: New.
1154         * ms1/startup-16-003.S: New.
1155         * ms1/startup-64-001.S: New.
1156         * ms1/stat.c: New.
1157         * ms1/time.c: New.
1158         * ms1/times.c: New.
1159         * ms1/trap.h: New.
1160         * ms1/trap.S: New.
1161         * ms1/unlink.c: New.
1162         * ms1/utime.c: New.
1163         * ms1/write.c: New.
1164
1165 2005-05-19  Corinna Vinschen  <vinschen@redhat.com>
1166
1167         * arm/elf-redboot.ld, iq2000/sim.ld, m68hc11/sim-valid-m68hc11.ld,
1168         * m68hc11/sim-valid-m68hc12.ld, mcore/elf-cmb.ld, mips/cfe.ld,
1169         * mips/ddb-kseg0.ld, mips/ddb.ld, mips/dve.ld, mips/idt.ld,
1170         * mips/idt32.ld, mips/idt64.ld, mips/jmr3904app-java.ld,
1171         * mips/jmr3904app.ld, mips/jmr3904dram-java.ld, mips/jmr3904dram.ld,
1172         * mips/nullmon.ld, mips/pmon.ld, mn10200/eval.ld, mn10200/sim.ld,
1173         * mn10300/asb2303.ld, mn10300/asb2305.ld, mn10300/eval.ld,
1174         * mn10300/sim.ld, rs6000/ads.ld, rs6000/mbx.ld, rs6000/yellowknife.ld,
1175         * sh/sh1lcevb.ld, sh/sh2lcevb.ld, sh/sh3bb.ld, sh/sh3lcevb.ld,
1176         * sparc/elfsim.ld, sparc/ex930.ld, sparc/ex931.ld, sparc/ex934.ld,
1177         * sparc/sparc86x.ld, xstormy16/eva_app.ld, xstormy16/eva_stub.ld,
1178         * xstormy16/sim_high.ld, xstormy16/sim_rom.ld: Add .debug_ranges
1179         section.
1180
1181 2005-05-05  Tobias Anderberg  <tobias.anderberg@axis.com>
1182
1183         * arm/syscalls.c (get_errno): Fix output register constraint.
1184
1185 2005-05-05  J"orn Rennecke <joern.rennecke@st.com>
1186
1187         * rs6000/sim-getrusage.S: New file, broken out of:
1188         (simulator.S).
1189         * rs6000/Makefile.in (SIM_OBJS): Add sim-getrusage.o.
1190         (sim-getrusage.o): New rule.
1191
1192 2005-04-28  Shaun Jackman  <sjackman@gmail.com>
1193
1194         * libgloss/syscalls.c (get_errno): Add an output register constraint.
1195
1196 2005-04-19  Eric Christopher  <echristo@redhat.com>
1197
1198         * mips/regs.S: Sign extend constants for mips64 and unify
1199         address handling.
1200
1201 2005-04-12  Shaun Jackman  <sjackman@gmail.com>
1202
1203         * libgloss/arm/Makefile.in (RDPMON_BSP): librdpmon.a was empty due 
1204         to a typo. Fixed.
1205         (RDIMON_BSP): Ditto.
1206
1207 2005-04-12  Richard Sandiford  <rsandifo@redhat.com>
1208
1209         * mips/array.ld, mips/cfe.ld, mips/dve.ld, mips/idt32.ld,
1210         * mips/idt64.ld, mips/idtecoff.ld, mips/idt.ld,
1211         * mips/jmr3904app-java.ld, mips/jmr3904app.ld,
1212         * mips/jmr3904dram-java.ld, mips/jmr3904dram.ld, mips/lsi.ld,
1213         * mips/nullmon.ld, mips/pmon.ld: Keep .init and .fini.
1214
1215 2005-02-08  Antony King  <antony.king@st.com>
1216
1217         * arm/syscalls.c: Change CHECK_INIT to pass reentrant struct
1218         instead of file pointer.
1219
1220 2005-02-01  Hans-Peter Nilsson  <hp@axis.com>
1221
1222         * cris/Makefile.in (ALL_INSTALL_FILES): New macro.
1223         (ALL_INSTALL_FILES_NEWLIB_COPY): New macro.
1224         (all): Use ALL_INSTALL_FILES instead of its contents.  Add
1225         ALL_INSTALL_FILES_NEWLIB_COPY.
1226         ($(objroot)/newlib/%, $(objroot)/newlib/libnosys.a): New rules
1227
1228 2005-01-27  Hans-Peter Nilsson  <hp@axis.com>
1229
1230         * configure.in: Support cris-*-* and crisv32-*-*.
1231         * libnosys/configure.in: Ditto.
1232         * configure, libnosys/configure: Regenerate.
1233         * cris: New directory.
1234         * cris/crt0.S, cris/crtn.c, cris/gensyscalls, cris/linunistd.h,
1235         cris/outbyte.c, cris/configure.in, cris/crti.c, cris/lcrt0.c,
1236         cris/Makefile.in, cris/setup.S, cris/configure: New files.
1237
1238 2005-01-21  Hans-Peter Nilsson  <hp@axis.com>
1239
1240         * libnosys/warning.h (stub_warning): Remove "warning: " prefix.
1241
1242 2005-01-18  Hans-Peter Nilsson  <hp@axis.com>
1243
1244         * libnosys/warning.h (link_warning) [HAVE_GNU_LD and HAVE_ELF]:
1245         Prefix symbol in section name with __SYMBOL_PREFIX.  Do not use
1246         __make_section_unallocated.  Mark magic variable as used.
1247
1248 2005-01-18  Hans-Peter Nilsson  <hp@axis.com>
1249
1250         * libnosys/configure.in (libc_cv_asm_previous_directive): Set
1251         cache-id variable.
1252         (libc_cv_asm_popsection_directive): Ditto.
1253         (libc_cv_section_attributes): Ditto.
1254         (libc_symbol_prefix): Rename from libc_dollar_prefix.  Check for
1255         "_" as well, and set __SYMBOL_PREFIX accordingly.
1256         * libnosys/configure: Regenerate.
1257
1258 2005-01-18  Hans-Peter Nilsson  <hp@axis.com>
1259
1260         * libnosys/Makefile.in (LD, AS): Correct obsoleted suffix: Say
1261         as-new and ld-new, not as.new and ld.new.
1262
1263 2005-01-14  Hans-Peter Nilsson  <hp@axis.com>
1264                                                                                 
1265         * libnosys/warning.h (__make_section_unallocated)
1266         [HAVE_ASM_PREVIOUS_DIRECTIVE, HAVE_ASM_POPSECTION_DIRECTIVE]: Use "\n"
1267         instead of ";" to delimit assembly lines.
1268                                                                                 
1269 2005-01-07  Paul Brook  <paul@codesourcery.com>
1270                                                                                 
1271         * arm/crt0.S: Call __libc_{init,fini}_array instead of
1272         _init/_fini if they exist.
1273
1274 2004-11-26  Paul Brook  <paul@codesourcery.com>
1275                                                                                 
1276         * arm/crt0.S (_start): Add .cantunwind annotation.
1277                                                                                 
1278 2004-10-28  Nick Clifton  <nickc@redhat.com>
1279
1280         * configure.in: Add support for iq2000 target.
1281         * configure: Regenerate.
1282
1283 2004-10-05  Tomer Levi  <Tomer.Levi@nsc.com>
1284
1285         * configure.in: Support crx-*-*.
1286         * configure: regenerate.
1287         * crx/_exit.c: New file.
1288         * crx/_getenv.c: Ditto.
1289         * crx/_rename: Ditto.
1290         * crx/close.c: Ditto.
1291         * crx/configure.in: Ditto.
1292         * crx/crti.S: Ditto.
1293         * crx/crtn.S: Ditto.
1294         * crx/crt0.S: Ditto.
1295         * crx/dvz_hndl.c: Ditto.
1296         * crx/flg_hndl.c: Ditto.
1297         * crx/fstat.c: Ditto.
1298         * crx/getpid.c: Ditto.
1299         * crx/iad_hndl.c: Ditto.
1300         * crx/intable.c: Ditto.
1301         * crx/isatty.c: Ditto.
1302         * crx/kill.c: Ditto.
1303         * crx/lseek.c: Ditto.
1304         * crx/Makefile.in: Ditto.
1305         * crx/open.c: Ditto.
1306         * crx/putnum.c: Ditto.
1307         * crx/read.c: Ditto.
1308         * crx/sbrk.c: Ditto.
1309         * crx/sim.ld: Ditto.
1310         * crx/stat.c: Ditto.
1311         * crx/svc_hndl.c: Ditto.
1312         * crx/time.c: Ditto.
1313         * crx/und_hndl.c: Ditto.
1314         * crx/unlink.c: Ditto.
1315         * crx/write.c: Ditto.
1316
1317 2004-10-01  Paul Brook  <paul@codesourcery.com>
1318
1319         * arm/configure.in: Add *-*-aebi target.
1320         * arm/configure: Regenerate.
1321
1322 2004-08-25  Corinna Vinschen  <vinschen@redhat.com>
1323
1324         * i386/cygmon.ld (.text): Fix alignment.
1325         (.rodata): Handle .rodata.* sections.
1326
1327 2004-06-27  Hideki Iwamoto <h-iwamoto@kit.hi-ho.ne.jp>
1328
1329         * Makefile.in: Support $(DESTDIR).
1330         * arm/Makefile.in: Ditto.
1331         * d30v/Makefile.in: Ditto.
1332         * doc/Makefile.in: Ditto.
1333         * fr30/Makefile.in: Ditto.
1334         * frv/Makefile.in: Ditto.
1335         * hp74x/Makefile.in: Ditto.
1336         * i386/Makefile.in: Ditto.
1337         * i960/Makefile.in: Ditto.
1338         * iq2000/Makefile.in: Ditto.
1339         * libnosys/Makefile.in: Ditto.
1340         * m32r/Makefile.in: Ditto.
1341         * m68hc11/Makefile.in: Ditto.
1342         * m68k/Makefile.in: Ditto.
1343         * mcore/Makefile.in: Ditto.
1344         * mips/Makefile.in: Ditto.
1345         * mn10200/Makefile.in: Ditto.
1346         * mn10300/Makefile.in: Ditto.
1347         * pa/Makefile.in: Ditto.
1348         * rs6000/Makefile.in: Ditto.
1349         * sparc/Makefile.in: Ditto.
1350         * sparc/libsys/Makefile.in: Ditto.
1351         * xstormy16/Makefile.in: Ditto.
1352
1353 2004-06-25  Jeff Johnston  <jjohnstn@redhat.com>
1354
1355         * libnosys/_exit.c: New file.
1356         * libnosys/Makefile.in: Add _exit.o.
1357
1358 2004-06-17  Jeff Johnston  <jjohnstn@redhat.com>
1359
1360         * arm/configure.in: Check the value of newlib-may-supply-syscalls
1361         enablement variable to determine if crt0 should or should not be
1362         built.
1363         * arm/configure: Regenerated.
1364         * arm/Makefile.in: Changed to look at @BUILD_CRT0_TRUE@ and
1365         @BUILD_CRT0_FALSE@ variables set in configure to determine
1366         if crt0.o should be built and installed.
1367
1368 2004-06-09  Toralf Lund  <toralf@procaptura.com>
1369
1370         * arm/crt0.S: Copied from newlib and it now also sets up stacks for 
1371         FIQ and IRQ mode, plus calls hardware_init_hook() and 
1372         software_init_hook() if present.
1373         * arm/libcfunc.c, arm/swi.h, arm/syscalls.c: Copied
1374         from newlib.
1375         * arm/Makefile.in: Build crt0.o, rdpmon-crt0.o, rdimon-crt0.o,
1376         librdpmon.a, librdimon.a - support file for "bare" setup, as well
1377         as "RDP" and "RDI" monitors.
1378         * arm/coff-rdpmon.specs, arm/elf-rdpmon.specs,
1379         arm/coff-rdimon.specs, arm/elf-rdimon.specs: gcc specs files to go
1380         with above mentioned support libs and startfiles.
1381
1382 2004-06-03  Alexandre Oliva  <aoliva@redhat.com>
1383
1384         * mn10300/sim.ld: Start at address 4, to avoid ambiguity with NULL
1385         pointers.
1386
1387 2004-05-26  Jeff Johnston  <jjohnstn@redhat.com>
1388
1389         * libnosys/sbrk.c: Add include of <_syslist.h> and "config.h".
1390
1391 2004-05-05  Richard Sandiford  <rsandifo@redhat.com>
1392
1393         * mips/array.ld, mips/cfe.ld, mips/ddb-kseg0.ld, mips/ddb.ld,
1394         * mips/dve.ld, mips/idt32.ld, mips/idt64.ld, mips/idt.ld
1395         * mips/jmr3904app.ld, mips/lsi.ld, mips/nullmon.ld, mips/pmon.ld
1396         (.eh_frame_hdr, .eh_frame, .gcc_except_table, .jcr): New sections.
1397
1398 2004-04-02  Chris Demetriou  <cgd@broadcom.com>
1399
1400         * mips/regs.S (C0_COUNT): Fix comment that kept this from being
1401         defined.
1402         * mips/vr4300.S: Use C0_COUNT as appropriate instead of hardcoding $9.
1403         * mips/vr5xxx.S: Likewise.
1404
1405 2004-03-23  Eric Christopher  <echristo@redhat.com>
1406
1407         * frv/crt0.S: Fix comment.
1408         * mips/configure.in: Add mipsisa64-*-* to target support.
1409         * mips/configure: Regenerate.
1410
1411 2004-03-03  Stephane Carrez  <stcarrez@nerim.fr>
1412
1413         * m68hc11/sci-inout.S: Supports -mlong-calls.
1414         * m68hc11/sim-valid-m68hc11.ld (.tramp): New section for trampolines.
1415         (.text): Mark the .installN and .finiN section with KEEP.
1416         (.vectors): Likewise for .vectors.
1417         (.gcc_except_table): New section.
1418         * m68hc11/sim-valid-m68hc12.ld (.tramp): New section for trampolines.
1419         (.text): Mark the .installN and .finiN section with KEEP.
1420         (.vectors): Likewise for .vectors.
1421         (.gcc_except_table): New section.
1422
1423 2004-01-23  Gábor Lóki  <loki@inf.u-szeged.hu>
1424
1425         * m68k/leds.c: remove led_putnum(), zylons() forward
1426         function declarations.
1427         * m68k/leds.h: add zylons() forward function declaration.
1428
1429 2004-01-06  Alexandre Oliva  <aoliva@redhat.com>
1430
1431         2003-12-02  Richard Sandiford  <rsandifo@redhat.com>
1432         * frv/crt0.S (_start): Fix use of FDPIC conditionals.  Move the set of
1433         gr11 outside the FDPIC conditional.  Avoid clobbering gr4 too early.
1434         2003-11-14  Richard Sandiford  <rsandifo@redhat.com>
1435         * frv/crt0.S: Fix fdpic sp calculation.
1436         2003-11-05  Alexandre Oliva  <aoliva@redhat.com>
1437         * frv/crt0.S: Use __stacksize, not __stack, to initialize sp on
1438         FDPIC.  Update comments on computing _GLOBAL_OFFSET_TABLE_.  Don't
1439         fixup ctors nor dtors on FDPIC.
1440         2003-09-19  Alexandre Oliva  <aoliva@redhat.com>
1441         * frv/crt0.S (_start): Set up gr15 only for FDPIC.
1442         * frv/crt0.S (_start): Save _GLOBAL_OFFSET_TABLE_ in gr17, and set
1443         gr15 before function calls.
1444         2003-09-19  DJ Delorie  <dj@redhat.com>, Alexandre Oliva  <aoliva@redhat.com>
1445         * frv/crt0.S (_start): Set up gr15 with _GLOBAL_OFFSET_TABLE_'s
1446         value.
1447
1448 2003-10-27  Bernardo Innocenti  <bernie@develer.com>
1449
1450         * m68k/asm.h: Add macros for -fPIC, -msep-data and
1451         -mid-shared-library support.
1452         * m68k/crt0.S: Use macros for -fPIC, -msep-data and
1453         -mid-shared-library support.
1454         * m68k/sim-crt0.S: Likewise.
1455
1456 2003-10-15  Bernardo Innocenti  <bernie@develer.com>
1457
1458         * m68k/sim-funcs.c (_XOPEN_SOURCE): Define to get the pid_t
1459         typedef from <unistd.h>.
1460
1461 2003-08-26  Jason Merrill  <jason@redhat.com>
1462
1463         * sparc/elfsim.ld: Fix __EH_FRAME_BEGIN__ definition.
1464         * sparc/sparc86x.ld: Likewise.
1465
1466 2003-08-20  Chris Demetriou  <cgd@broadcom.com>
1467
1468         * mips/crt0_cfe.S: New file.
1469         * mips/cfe_mem.c: New file.
1470         * mips/cfe_prestart.S: Remove.
1471         * mips/cfe.ld: Adjust to use crt0_cfe.o as the startup file, and
1472         and use _start as the entry point.  Align BSS to 32-byte boundary.
1473         * mips/cfe.c: Reimplement to fit on top of a crt0_cfe.o file.
1474         * mips/cfe_api.h (__libcfe_stack_size, __libcfe_mem_limit)
1475         (__libcfe_meminit, __libcfe_stack_top): New prototypes.
1476         * mips/Makefile.in (CFEOBJS): Replace cfe_prestart.o with cfe_mem.o.
1477         (cfe.o, cfe_api.o, cfe_mem.o, crt0_cfe.o): New targets.
1478         * mips/configure.in: Build and install crt0_cfe.o when CFE support
1479         is built.
1480         * mips/configure: Regenerate.
1481
1482 2003-08-12  Jeff Johnston  <jjohnstn@redhat.com>
1483
1484         * i386/cygmon-salib.c (unlink): New stub.
1485
1486 2003-08-08  Mark Salter <msalter@redhat.com>
1487
1488         * i386/cygmon.ld: Add 4 byte alignment to __CTOR_LIST__
1489
1490         Bernd Schmidt  <bernds@redhat.com>
1491
1492         * i386/cygmon.ld: Add entry for .rodata.
1493
1494 2003-07-14  Kazuhiro Inaoka <inaoka.kazuhiro@renesas.com>
1495
1496         * m32r/configure.in: fixed bug to delete ../config-ml.in.
1497
1498 2003-07-10  Alexandre Oliva  <aoliva@redhat.com>
1499
1500         2001-10-30  Jeff Johnston  <jjohnstn@redhat.com>
1501         * mn10300/asb2305.ld: Added ASB2305 support.
1502         * mn10300/configure: Ditto.
1503         * mn10300/configure.in: Ditto.
1504         2001-09-12  Stan Cox  <scox@redhat.com>
1505         * mn10300/asb2303.ld: New file.  Linker script for the ASB2303
1506         AM33/2.00 board.
1507         * mn10300/configure.in: Add support for asb2303 board script.
1508
1509 2003-07-08  Jeff Johnston  <jjohnstn@redhat.com>
1510
1511         * configure.in: Reapply Kazuhiro Inaoko's multilib patch from
1512         04-17-03.
1513         * configure: Regenerated.
1514
1515 2003-06-23  Kazuhiro Inaoka  <inaoka.kazuhiro@renesas.com>
1516
1517         * m32r/crt0.S (_start): Allow _stack to be placed anywhere
1518         in memory.
1519
1520 2003-06-06  Stan Cox  <scox@redhat.com>
1521             Jeff Johnston  <jjohnstn@redhat.com>
1522             Anthony Green  <green@redhat.com>
1523
1524         * configure.in: Add iq2000 support.
1525         * configure: Rebuilt.
1526         * iq2000/Makefile.in, iq2000/access.c, iq2000/_exit.c,
1527         iq2000/configure, iq2000/chmod.c, iq2000/chown.c, iq2000/close.c,
1528         iq2000/configure.in, iq2000/creat.c, iq2000/crt0.S, iq2000/crt1.c,
1529         iq2000/execv.c, iq2000/execve.c, iq2000/fork.c, iq2000/fstat.c,
1530         iq2000/getpid.c, iq2000/gettime.c, iq2000/isatty.c, iq2000/kill.c,
1531         iq2000/lseek.c, iq2000/open.c, iq2000/pipe.c, iq2000/read.c,
1532         iq2000/sbrk.c, iq2000/sim.ld, iq2000/stat.c, iq2000/test.c,
1533         iq2000/time.c, iq2000/times.c, iq2000/trap.c, iq2000/trap.h,
1534         iq2000/unlink.c, iq2000/utime.c, iq2000/wait.c, iq2000/write.c:
1535         New files.
1536
1537 2003-05-27  Jeff Johnston  <jjohnstn@redhat.com>
1538
1539         * libnosys/Makefile.in: Add errno.o.
1540         * libnosys/errno.c: New file to supply errno definition if
1541         one not provided yet.
1542
1543 2003-05-26  Eric Christopher  <echristo@redhat.com>
1544
1545         * mips/crt0.S: Remove stackbase variable set.
1546
1547 2003-05-02  Eric Christopher  <echristo@redhat.com>
1548
1549         * mips/cma101.c (__sizemem): Make sure that end is not in .sdata.
1550
1551 2003-04-29  Nick Clifton  <nickc@redhat.com>
1552
1553         * libnosys/sbrk.c: Remove unnecessary #include's.
1554         Change return type of _sbrk() function to void * to match
1555         definition in system header files.
1556         Fix formatting.
1557
1558 2003-04-23  Andrew Haley  <aph@cambridge.redhat.com>
1559
1560         * xstormy16/sim_rom.ld: New.
1561         * xstormy16/Makefile.in (SIM_SCRIPTS): Add sim_rom.ld.
1562         * xstormy16/crt0.s (_int_reset): Copy ROM data to RAM.
1563         * xstormy16/eva_app.ld (_rdata, _data): New.
1564         * xstormy16/sim_high.ld (_rdata, _data): New.
1565
1566 2003-04-17  Inaoka Kazuhiro  <inaoka.kazuhiro@renesas.com>
1567
1568         * m32r/Makefile.in: Add multilib support.
1569         * m32r/configure.in: Ditto.
1570         * m32r/configure: Regenerated.
1571
1572 2003-04-16  Nick Clifton  <nickc@redhat.com>
1573
1574         * xstormy16/sim_high.ld: Add .jcr section mapping.
1575         * xstormy16/eva_stub.ld: Likewise.
1576         * xstormy16/eva_app.ld: Likewise.
1577
1578 2003-04-09  Chris Demetriou  <cgd@broadcom.com>
1579
1580         * mips/cfe.c (_flush_cache): New function.
1581
1582 2003-02-18  Richard Sandiford  <rsandifo@redhat.com>
1583
1584         * mips/nullmon.c (_ftext, _end): Adjust declaration.
1585         (get_mem_info): Rework.
1586
1587 2003-02-18  Richard Sandiford  <rsandifo@redhat.com>
1588
1589         * mips/crt0.S (zerobss): Reload __memsize after call.
1590
1591 2003-02-17  Chris Demetriou  <cgd@broadcom.com>
1592
1593         * mips/cfe.c (__cfe_handle, __cfe_entrypt): Fix types.
1594
1595 2003-02-05  Chris Demetriou  <cgd@broadcom.com>
1596
1597         * mips/configure.in (mipsisa32el-*-*): Handle in the same way
1598         as mipsisa32-*-*.
1599         (mipsisa32r2-*-*, mipsisa32r2el-*-*): New, handled in the same
1600         way as mipsisa32-*-*.
1601         * mips/configure: Regenerate.
1602
1603 2003-02-05  Chris Demetriou  <cgd@broadcom.com>
1604
1605         * mips/cfe.c (hardware_hazard_hook): Move...
1606         * mips/cfe_prestart.S (hardware_hazard_hook): To here,
1607         and translate into assembly.
1608
1609 2003-01-08  Richard Sandiford  <rsandifo@redhat.com
1610
1611         * mips/crt0.S (_start): Allocate 64 bytes of stack instead of 32.
1612         Pass an empty argv and envp to main().
1613
1614 2003-01-08  Richard Sandiford  <rsandifo@redhat.com
1615
1616         * mips/configure.in (mips64vr-elf, mips64vrel-elf): New config.
1617         * mips/configure: Regenerate.
1618
1619 2003-01-07  Chris Demetriou  <cgd@broadcom.com>
1620
1621         * crt0.S: Check for definition of __mips64 rather than
1622         checking (__mips < 3).
1623         * pmon.S: Likewise.
1624         * cygmon.c (sysCall): Avoid multi-line string literals.
1625
1626 2002-11-12 Jeff Johnston  <jjohnstn@redhat.com>
1627
1628         *  mips/Makefile.in: Add cygmon support.
1629         *  mips/configure.in: Ditto.
1630         *  mips/configure: Regenerated.
1631         *  mips/crt0_cygmon.S: New file.
1632         *  mips/cygmon.c: Ditto.
1633         *  mips/pmon.S: Minor formatting and copyright changes.
1634         *  mips/crt0.S: Ditto.
1635
1636 2002-11-08 Jeff Johnston  <jjohnstn@redhat.com>
1637
1638         * arm/Makefile.in: Add support for new pid specs.
1639         * arm/coff-iq80310.specs: Change to allow future support.
1640         * arm/elf-iq80310.specs: Ditto.
1641         * arm/elf-redboot.specs: Ditto.
1642         * arm/coff-redboot.ld: Add EH frame support.
1643         * arm/redboot-crt0.S: Add optional code to clear bss without
1644         memset.
1645         * arm/coff-pid.specs: New file.
1646         * arm/elf-pid.specs: New file.
1647
1648 2002-11-08 Jeff Johnston  <jjohnstn@redhat.com>
1649            Catherine Moore  <clm@redhat.com>
1650
1651         * m32r/configure.in:  Do not require gcc to be able to link an
1652         executable.
1653         * m32r/configure: Regenerate.
1654         * m32r/Makefile.in: Directly reference gdbstub.
1655
1656 2002-10-25  Bernd Schmidt  <bernds@redhat.com>
1657
1658         * i386/cygmon.ld: Add entry for .gcc_except_table.
1659
1660 2000-10-25  Mark Salter  <msalter@redhat.com>
1661
1662         * i386/cygmon-crt0.S: Use __USER_LABEL_PREFIX__ for symbols. Always
1663         use __start for start symbol.
1664         * i386/cygmon-salib.c: Don't build __do_global_[cd]tors for AOUT.
1665         Disable file I/O extensions to make Plum Hall happy.
1666         * i386/cygmon.ld: Set __start as entry point.
1667         * i386/Makefile.in: Support IS_AOUT.
1668         * i386/configure.in: Support IS_AOUT.
1669         * i386/configure: Regenerated.
1670         * i386/cygmon-salib.c:
1671         * i386/cygmon-gmon.c (_mcount): It's _etext.
1672
1673 2002-10-25  Jeff Johnston  <jjohnstn@redhat.com>
1674
1675         * configure.in: Clarify some of the triplets so unsupported
1676         configurations don't pass through.
1677         * configure: Regenerated.
1678
1679 2002-10-18  Stephane Carrez  <stcarrez@nerim.fr>
1680
1681         * m68hc11/syscalls.c (sbrk): Use ptrdiff_t for increment parameter.
1682
1683 2002-10-07  Richard Sandiford  <rsandifo@redhat.com>
1684
1685         * mips/ddb.ld: KEEP .init and .fini.
1686         * mips/ddb-kseg0.ld: Likewise.
1687
1688 2002-10-04  Michael Snyder  <msnyder@redhat.com>
1689
1690         * m32r/m32r-lib.c (exceptionHandler): Fix computation of
1691         exception vector address, as suggested by Mitsubishi.
1692         (getExceptionVector): Ditto.
1693
1694 2002-08-01  Chris Demetriou  <cgd@broadcom.com>
1695
1696         * mips/cfe.ld (STARTUP): New definition.
1697         * mips/ddb-kseg0.ld (STARTUP): Likewise.
1698         * mips/ddb.ld (STARTUP): Likewise.
1699         * mips/dve.ld (STARTUP): Likewise.
1700         * mips/idt.ld (STARTUP): Likewise.
1701         * mips/jmr3904app-java.ld (STARTUP): Likewise.
1702         * mips/jmr3904app.ld (STARTUP): Likewise.
1703         * mips/jmr3904dram-java.ld (STARTUP): Likewise.
1704         * mips/jmr3904dram.ld (STARTUP): Likewise.
1705         * mips/lsi.ld (STARTUP): Likewise.
1706         * mips/nullmon.ld (STARTUP): Likewise.
1707         * mips/pmon.ld (STARTUP): Likewise.
1708
1709 2002-07-23  Stephane Carrez  <stcarrez@nerim.fr>
1710
1711         * README: Mention 68HC11/68HC12 support.
1712         * configure.in: Recognize m6811-elf and m6812-elf.
1713         * configure: Regenerated.
1714         * m68hc11/Makefile.in: New file.
1715         * m68hc11/configure.in: New file.
1716         * m68hc11/configure: New file.
1717         * m68hc11/crt0.S: New file.
1718         * m68hc11/sci-inout.S: New file for 68hc11/68hc12 sio.
1719         * m68hc11/sim-valid-m68hc11.ld: New file.
1720         * m68hc11/sim-valid-m68hc12.ld: New file.
1721         * m68hc11/syscalls.c: New file.
1722
1723 2002-07-22  Aldy Hernandez  <aldyh@redhat.com>
1724
1725         * rs6000/simulator.S (gettimeofday): New.
1726         (getrusage): New.
1727
1728 2002-07-18  Chris Demetriou  <cgd@broadcom.com>
1729
1730         * read.c (read): Don't assign past end of buffer, fix return value.
1731
1732 2002-07-12  Chris Demetriou  <cgd@broadcom.com>
1733
1734         * mips/Makefile.in (GENOBJS2): New variable to name other
1735         commonly used objects.
1736         (DVEOBJS, JMR3904OBJS): Reference GENOBJS2.
1737
1738         * mips/Makefile.in: Add support for Broadcom CFE firmware.
1739         * mips/configure.in: (mipsisa32*-*-*, *): Likewise.
1740         * mips/configure: Regenerate.
1741         * mips/cfe.c: New file.
1742         * mips/cfe.ld: New file.
1743         * mips/cfe_api.c: New file.
1744         * mips/cfe_api.h: New file.
1745         * mips/cfe_api_int.h: New file.
1746         * mips/cfe_error.h: New file.
1747         * mips/cfe_prestart.S: New file.
1748
1749 2002-07-12  Chris Demetriou  <cgd@broadcom.com>
1750
1751         * mips/array.ld (hardware_exit_hook, hardware_hazard_hook): New
1752         symbols for optionally-provided functions.
1753         * mips/ddb-kseg0.ld: Likewise.
1754         * mips/ddb.ld: Likewise.
1755         * mips/dve.ld: Likewise.
1756         * mips/idt.ld: Likewise.
1757         * mips/idt32.ld: Likewise.
1758         * mips/idt64.ld: Likewise.
1759         * mips/idtecoff.ld: Likewise.
1760         * mips/jmr3904app-java.ld: Likewise.
1761         * mips/jmr3904app.ld: Likewise.
1762         * mips/jmr3904dram-java.ld: Likewise.
1763         * mips/jmr3904dram.ld: Likewise.
1764         * mips/lsi.ld: Likewise.
1765         * mips/nullmon.ld: Likewise.
1766         * mips/pmon.ld: Likewise.
1767         * mips/crt0.S: Invoke hardware_exit_hook and hardware_hazard_hook
1768         functions if they are provided.
1769         (_exit): Handle __embedded_pic properly.
1770
1771 2002-06-18  Dave Brolley  <brolley@redhat.com>
1772
1773         From Catherine Moore, Michael Meissner, Richard Sandiford:
1774         * configure.in: Support frv*-*-*.
1775         * frv/Makefile.in: New file.
1776         * frv/configure: New file.
1777         * frv/configure.in: New file.
1778         * frv/crt0.S: New file.
1779         * frv/fstat.c: New file.
1780         * frv/getpid.c: New file.
1781         * frv/isatty.c: New file.
1782         * frv/kill.c: New file.
1783         * frv/print.c: New file.
1784         * frv/putnum.c: New file.
1785         * frv/sbrk.c: New file.
1786         * frv/sim-close.S: New file.
1787         * frv/sim-exit.S: New file.
1788         * frv/sim-inbyte.c: New file.
1789         * frv/sim-lseek.S: New file.
1790         * frv/sim-open.S: New file.
1791         * frv/sim-read.S: New file.
1792         * frv/sim-time.c: New file.
1793         * frv/sim-unlink.S: New file.
1794         * frv/sim-write.S: New file.
1795         * frv/stat.c: New file.
1796
1797 2002-05-11  Thomas Fitzsimmons  <fitzsim@redhat.com>
1798
1799         * libnosys/acconfig.h (HAVE_SECTION_ATTRIBUTES): New macro.
1800         * libnosys/configure.in: Check gcc's support for section attributes.
1801         * libnosys/warning.h: Have link_warning expand to nothing if gcc
1802         does not support section attributes.
1803
1804 2002-04-22  Jonathan Larmour  <jlarmour@redhat.com>
1805
1806         * arm/syscall.h: New file. To define extra syscall values for RedBoot.
1807
1808         * arm/redboot-syscalls.c (_close): Fix setting of errno value.
1809         (_lseek): Ditto.
1810         (_open): Ditto.
1811         (_write): Ditto.
1812         (_read): Ditto.
1813         (_rename): New function.
1814         (_system): Ditto.
1815         (_stat): Ditto.
1816         (_unlink): Call a syscall for this now.
1817         (isatty): Ditto.
1818         (_fstat): Ditto.
1819         (_gettimeofday): Ditto.
1820
1821 2002-04-17  Joel Sherrill <joel@OARcorp.com>
1822
1823         * debug.h: Change mem_err to volatile to match definition in
1824         debug.c.
1825
1826 2002-04-17  Joel Sherrill <joel@OARcorp.com>
1827
1828         * sparc/cygmon-salib.c, sparc/erc32-stub.c: Don't use multi-line
1829         strings.
1830
1831 2002-04-16  Jeff Johnston  <jjohnstn@redhat.com>
1832
1833         * m68k/configure.in: Change to use LIB_AC_PROG_CC instead
1834         of AC_PROG_CC to avoid building an executable in configuration.
1835         * m68k/configure: Regenerated.
1836
1837 2002-04-15  Hans-Peter Nilsson  <hp@bitrange.com>
1838
1839         * d30v/syscalls.c: #include <time.h>.  Don't use multi-line
1840         strings.
1841
1842 2002-04-15  Hans-Peter Nilsson  <hp@bitrange.com>
1843
1844         * m32r/trapmon0.c (__trap0): Don't use multi-line strings.
1845
1846 2002-02-05  Mark Salter  <msalter@redhat.com>
1847
1848         * arm/elf-iq80310.specs: Ditto.
1849         * arm/elf-redboot.specs: Ditto.
1850         * arm/elf-redboot.ld: Fix eh_frame sections. Add .jcr section.
1851         * arm/redboot-crt0.S: Add support for __USES_INITFINI__.
1852
1853 2002-02-01  Geoffrey Keating  <geoffk@redhat.com>
1854
1855         * xstormy16/Makefile.in (SIM_OBJS): Remove sbrk.o, add
1856         sim_malloc_start.o.
1857         * xstormy16/eva_app.ld: Add __malloc_start.
1858         * xstormy16/sbrk.c: Remove.
1859         * xstormy16/sim_malloc_start.s: New file.
1860         * xstormy16/sim_high.ld: Make the stack start immediately at the
1861         end of the program.
1862
1863 2002-02-01  Michael Meissner  <meissner@redhat.com>
1864
1865         * mips/cma101.c (__sizemem_default): Allow user to specify the
1866         memory size.
1867         (__sizemem): Use it.
1868
1869 2002-01-24  Mark Salter  <msalter@redhat.com>
1870
1871         * arm/redboot-crt0.S: Use __get_memtop to put stack in high memory.
1872
1873         * arm/redboot-syscalls.c (_times): Unconditionally use SYS_times.
1874         (__get_memtop): New funtion to return top of memory.
1875
1876 2002-01-15  Mark Salter  <msalter@redhat.com>
1877
1878         * xstormy16/eva_stub.ld: Provide interrupt routine symbols which
1879         forward interrupts to user application vectors.
1880
1881         * xstormy16/crt0_stub.s: Remove default interrupt routines.
1882
1883         * xstormy16/Makefile.in: Rename stub app to eva_stub.elf and
1884         add it to install list.
1885
1886 2002-01-07  Mark Salter  <msalter@redhat.com>
1887
1888         * configure.in: Add support for arm, strongarm, and xscale.
1889         * configure: Regenerated.
1890         * arm/coff-iq80310.specs: New file.
1891         * arm/coff-redboot.ld: New file.
1892         * arm/coff-redboot.specs: New file.
1893         * arm/configure: New file.
1894         * arm/configure.in: New file.
1895         * arm/elf-iq80310.specs: New file.
1896         * arm/elf-redboot.ld: New file.
1897         * arm/elf-redboot.specs: New file.
1898         * arm/Makefile.in: New file.
1899         * arm/redboot-crt0.S: New file.
1900         * arm/redboot-syscalls.c: New file.
1901
1902 2001-12-22  Geoffrey Keating  <geoffk@redhat.com>
1903             Mark Salter  <msalter@redhat.com>
1904             Catherine Moore  <clm@redhat.com>
1905             Richard Henderson  <rth@redhat.com>
1906
1907         * configure.in: Add xstormy16.
1908         * libnosys/configure.in: Add xstormy16.
1909         * configure: Regenerated.
1910         * libnosys/configure: Regenerated.
1911         * xstormy16/Makefile.in: New file.
1912         * xstormy16/close.c: New file.
1913         * xstormy16/configure: New file.
1914         * xstormy16/configure.in: New file.
1915         * xstormy16/crt0.s: New file.
1916         * xstormy16/crt0_stub.s: New file.
1917         * xstormy16/crti.s: New file.
1918         * xstormy16/crtn.s: New file.
1919         * xstormy16/eva_app.c: New file.
1920         * xstormy16/eva_app.ld: New file.
1921         * xstormy16/eva_stub.ld: New file.
1922         * xstormy16/fstat.c: New file.
1923         * xstormy16/getpid.c: New file.
1924         * xstormy16/kill.c: New file.
1925         * xstormy16/lseek.c: New file.
1926         * xstormy16/open.c: New file.
1927         * xstormy16/sbrk.c: New file.
1928         * xstormy16/sim_high.ld: New file.
1929         * xstormy16/stat.c: New file.
1930         * xstormy16/syscalls.S: New file.
1931         * xstormy16/syscalls.m4: New file.
1932         * xstormy16/unlink.c: New file.
1933         * xstormy16/xstormy16_stub.c: New file.
1934
1935 2001-10-31  Jeff Johnston  <jjohnstn@redhat.com>
1936
1937         * m32r/Makefile.in: Use gdb stub set by configure.
1938         * m32r/configure.in: Add a special macro for testing
1939         c compiler without building executable.  Add setting of
1940         GDBSTUB.
1941         * m32r/configure: Regenerated.
1942
1943 2001-10-31  David Howells  <dhowells@redhat.com>
1944
1945         * syscall.h: Added SYS_times, SYS_gettimeofday, SYS_link values.
1946         * mn10300/times.c: Renamed "times" to "_times" so that it can be
1947         referenced by newlib.
1948         * mn10300/cygmon.c: New file.
1949         * mn10300/crt0_redboot.S: Ditto.
1950         * mn10300/crt0_cygmon.S: Ditto.
1951         * mn10300/Makefile.in: Added RedBoot and Cygmon support.
1952         * mn10300/configure.in: Changed to allow for future
1953         evaluation boards to be added.
1954         * mn10300/configure: Regenerated.
1955
1956 2001-10-17  Michael Meissner  <meissner@redhat.com>
1957
1958         * regs.S (K0BASE_ADDR,K1BASE_ADDR): Define as addresses to
1959         identify if a program is running in kernel segment 0.
1960
1961         * cma101.c (__sizemem): If we are running in kernel segment 0,
1962         instead of kernel segment 1, use kernel segment 0 addresses which
1963         are uncached when sizing memory.
1964
1965         * ddb-kseg0.ld: New file, clone of ddb.ld, except it links the
1966         program to run in kernel segment 0, instead of kernel segment 1.
1967
1968         * configure.in: Treat ddb-kseg0.ld like ddb.ld.
1969         * configure: Regenerate.
1970
1971 2001-09-15  Eric Christopher  <echristo@redhat.com>
1972
1973         * mips/configure.in (LIB_AC_PROG_CC): Fix typo in mipsisa32 to
1974         mipsisa32*.
1975         * mips/configure: Regenerate.
1976
1977 2001-09-14  Eric Christopher  <echristo@redhat.com>
1978
1979         * mips/configure.in: Add mipsisa32 support.
1980         * mips/configure: Regenerate.
1981         * mips/idt32.ld: New file.
1982         * mips/idt64.ld: New file.
1983
1984 2001-09-11  Michael Meissner  <meissner@redhat.com>
1985
1986         * mips/crt0.S (_start): If -mfp32, don't enable 64-bit floating
1987         point registers, even if we are compiling for a mips3 or greater.
1988
1989 2001-09-10  Jim Blandy  <jimb@redhat.com>
1990
1991         Add support for GDB monitor-style I/O.
1992         * m68k/idp-outbyte.c (raw_outbyte): Renamed from outbyte; made
1993         static.
1994         (outbyte): Call raw_outbyte; if GDB_MONITOR_OUTPUT is #defined,
1995         precede the byte with a ^O character.
1996         * m68k/idpgdb.ld: New linker script.
1997         * m68k/Makefile.in (IDPGDB_LDFLAGS, IDPGDB_BSP, IDPGDB_OBJS): New
1998         variables.
1999         (all): Add ${IDPGDB_BSP} to the list of things to build.
2000         (${IDPGDB_BSP}, idp-gdb-outbyte.o, idpgdb-test.x,
2001         idpgdb-test.srec, idpgdb-test.dis, idpgdb-test): New rules.
2002         (install): Install the IDPGDB stuff, too.
2003
2004 2001-08-30  Richard Henderson  <rth@redhat.com>
2005             Eric Christopher  <echristo@redhat.com>
2006
2007         * mips/crt0.S: Fix for .init/.fini sections.
2008
2009 2001-08-30  Richard Henderson  <rth@redhat.com>
2010             Eric Christopher  <echristo@redhat.com>
2011
2012         * mips/idt.ld: Rewrite for .init/.fini sections.
2013
2014 2001-08-22  Jonathan Larmour  <jlarmour@redhat.com>
2015
2016         * mips/Makefile.in (jmr3904-io.o): Remove bogus use of `-mips3.'
2017
2018 2001-07-18  Jeff Johnston  <jjohnstn@redhat.com>
2019
2020         * hp74x/configure: Regenerated with current autoconf.
2021         * m32r/configure: Ditto.
2022         * m68k/configure: Ditto.
2023         * pa/configure: Ditto.
2024         * sparc/configure: Ditto.
2025
2026 2001-03-08  Geoffrey Keating  <geoffk@redhat.com>
2027
2028         * rs6000/simulator.S (dup): New syscall.
2029
2030 2001-02-28  Will Cohen  <wcohen@redhat.com>
2031
2032         * src/libgloss/m68k/Makefile.in: Updated copyright and
2033          added rules to build simulator related libraries.
2034         (SIM_SCRIPTS): New variable.
2035         (SIM_LDFLAGS): New variable.
2036         (SIM_BSP): New variable.
2037         (SIM_CRT0): New variable.
2038         (SIM_OBJS): New variable.
2039         (SIM_TEST): New variable.
2040         (SIM_INSTALL): new variable.
2041         * src/libgloss/m68k/sim-abort.c: New file.
2042         * src/libgloss/m68k/sim-crt0.S: New file.
2043         * src/libgloss/m68k/sim-errno.c: New file.
2044         * src/libgloss/m68k/sim-funcs.c: New file.
2045         * src/libgloss/m68k/sim-inbyte.c: New file.
2046         * src/libgloss/m68k/sim-print.c: New file.
2047         * src/libgloss/m68k/sim-sbrk.c: New file.
2048         * src/libgloss/m68k/sim.ld: New file.
2049         * src/libgloss/m68k/simulator.S: New file.
2050
2051 2001-02-22  Jeff Johnston  <jjohnstn@redhat.com>
2052
2053         * mn10200/access.c: With DJ Delorie's permission, this code is
2054         now freely modifiable with no reference to "copying.dj".
2055         * mn10300/access.c: Ditto.
2056
2057 2001-02-06  Will Cohen  <wcohen@redhat.com>
2058
2059         * rs6000/sim-errno.c (__errno): Removed.
2060         (_cerror): Use re-entrant version of errno.
2061
2062 2000-09-05  Geoff Keating  <geoffk@cygnus.com>
2063
2064         * rs6000/simulator.S: Use conditional returns for documentation
2065         purposes.
2066         (access): Add new syscall.
2067
2068 Wed May 24 16:47:12 2000  Alexandre Oliva  <aoliva@cygnus.com>
2069
2070         * mn10300/time.c (time): Set *tloc, since the sim doesn't.
2071
2072 Mon Jan 31 18:45:26 2000  Donald Lindsay  <dlindsay@cygnus.com>
2073
2074         * mips/crt0.S: If compiled into a mips2 multilib, sets processor
2075         status register for 32 bit addressing
2076         * mips/regs.S: Add symbols for status and config register fields.
2077         * mips/vr5xxx.S: Variant of vr300.S with extensions to __cpu_flush()
2078         to cope with Vr5000 secondary cache and with Vr5432 CACHE instruction.
2079         * mips/Makefile.in:  Add rule for forming vr5xxx.o.
2080         * mips/configure.in:  Add case arm for mips64vr5000 since the
2081         default (which was previously used) should not get vr5xxx.o.
2082
2083 Wed Dec 22 19:08:09 1999  Christopher Faylor <cgf@cygnus.com>
2084
2085         * wince/Makefile.am: Use LDADD from configure.
2086         * wince/Makefile.in: Regenerate.
2087         * wince/configure.in: Determine libraries needed based (crudely) on
2088         target.
2089         * wince/configure: Regenerate.
2090
2091 1999-12-16  Tom Tromey  <tromey@cygnus.com>
2092
2093         * mips/Makefile.in (jmr3904-io.o): Don't compile with `-mips3'.
2094
2095         * mips/jmr3904-io.c: Actually completed merge of Andrew Haley's
2096         patch of 1998-11-23.
2097
2098         * mips/jmr3904dram-java.ld: Provide _Jv_QthreadsStackSize.  Link
2099         against -lgcjcoop, not -lqthreads.
2100         * mips/jmr3904app-java.ld: Provide _Jv_QthreadsStackSize.
2101
2102 1999-12-16  Brendan Kehoe  <brendan@cygnus.com>
2103
2104         * m68k/idp.ld: Only use specific .dtors and .ctors uses of KEEP,
2105         without the bits for __{C,D}TOR_{LIST,END}__.
2106
2107 1999-12-14  Geoff Keating  <geoffk@cygnus.com>
2108
2109         * m68k/idp.ld (.text): Put crtbegin at the start of the
2110         constructors and destructors.
2111
2112 Mon Nov 29 12:14:48 1999  Christopher Faylor <cgf@cygnus.com>
2113
2114         * wince/Makefile.am: Add missing gdbdir assignment.
2115         * wince/Makefile.in: Regenerate.
2116
2117 1999-11-22  Gavin Romig-Koch  <gavin@cygnus.com>
2118
2119        * mips/idt.ld: Remove the OUTPUT_ARCH("mips:4000") directive.
2120
2121 1999-11-15  Nick Clifton  <nickc@cygnus.com>
2122
2123         * configure.in: Add arm-wince-pe target.
2124         * configure: Regenerate.
2125
2126 1999-11-11  Brendan Kehoe  <brendan@cygnus.com>
2127
2128         * sparc/elfsim.ld (.text): Also provide __EH_FRAME_BEGIN__ since we're
2129         not bringing in crtbegin.o.
2130         * sparc/sparc86x.ld (.text): Likewise.   Add initp support.
2131
2132 1999-10-30  Geoffrey Keating  <geoffk@cygnus.com>
2133
2134         * mips/crt0.S: Handle -membedded-pic properly.  Set the $gp much
2135         earlier because it'll be needed.  Set the high bits of the PC to
2136         be consistent with other pointers, so that exception handling
2137         doesn't get confused.
2138
2139 1999-09-27  Jonathan Larmour  <jlarmour@cygnus.co.uk>
2140
2141         * sparc/crt0.s: Delete. This file is obsolete and caused problems
2142         on case-insensitive windows filesystems.
2143
2144 Wed Sep 22 15:59:17 1999  Christopher Faylor <cgf@cygnus.com>
2145
2146         * configure.in: Generalize Windows CE target detection.
2147         * configure: Regenerate.
2148         * wince/Makefile.am: Rename CE stub filename.
2149         * wince/Makefile.in: Regenerate.
2150         * wince/configure.in: Allow changing of CE stub.
2151         * wince/configure: Regenerate.
2152
2153 1999-07-26  Andrew Haley  <aph@cygnus.com>
2154
2155         * m32r/crt0.S (_start): Use a full word immediate for __bss_start
2156         and _end to allow them to be placed anywhere in memory.
2157
2158 1999-07-08  Jason Merrill  <jason@yorick.cygnus.com>
2159
2160         * sparc/elfsim.ld: Provide initp support.
2161
2162 1999-06-22  Nick Clifton  <nickc@cygnus.com>
2163
2164         * mips/dve.ld (.rdata): Rename section to .rodata.
2165         * mips/idt.ld (.rdata): Rename section to .rodata.
2166         * mips/jmr3904app-java.ld (.rdata): Rename section to .rodata.
2167         * mips/jmr3904app.ld (.rdata): Rename section to .rodata.
2168         * mips/lsi.ld (.rdata): Rename section to .rodata.
2169         * mips/nullmon.ld (.rdata): Rename section to .rodata.
2170         * mips/pmon.ld (.rdata): Rename section to .rodata.
2171         * mips/r5900.ld (.rdata): Rename section to .rodata.
2172         * mips/sky.ld (.rdata): Rename section to .rodata.
2173         * mips/vpu.ld (.rdata): Rename section to .rodata.
2174
2175 Tue Jun 01 16:57:46 1999  Jeff Johnston <jjohnstn@cygnus.com>
2176
2177         * libnosys/configure.in: Added setting of ac_file
2178         prior to calling config-ml.in.
2179         * libnosys/configure: Regenerated.
2180         * libnosys/Makefile.in: Added code to make install directory
2181         for libnosys.a prior to installing.
2182
2183 Wed May 26 17:22:46 1999  Christopher Faylor <cgf@cygnus.com>
2184
2185         * Makefile.am: Expect the object file to be in the
2186         current directory.
2187         * Makefile.in: Regenerate.
2188
2189 Tue May 25 14:35:21 1999  Christopher Faylor <cgf@cygnus.com>
2190
2191         * configure.in: Add wince targest.
2192         * configure: Regenerate.
2193         * wince: New directory
2194         * wince/Makefile.am: New file.
2195         * wince/Makefile.in: New file.
2196         * wince/aclocal.m4: New file.
2197         * wince/configure: New file.
2198         * wince/configure.in: New file.
2199
2200 1999-05-24  Jim Wilson  <wilson@cygnus.com>
2201
2202         * sparc/elfsim.ld: Add `.data.*'.
2203
2204 1999-05-22  Jason Merrill  <jason@yorick.cygnus.com>
2205
2206         * m68k/idp.ld: Add initp support.
2207         * sparc/cygmon.ld.src: Likewise.
2208
2209 1999-05-14  Nick Clifton  <nickc@cygnus.com>
2210
2211         * mcore/syscalls.S (_sbrk): Round to 8 bytes not 4.
2212
2213 1999-05-13  Mark Salter  <msalter@cygnus.com>
2214
2215         * mcore/configure.in: Fixed multilib support.
2216         * mcore/configure: Regenerated.
2217         * mcore/Makefile.in: Fixed multilib problems.
2218         Added cmb board support
2219         * mcore/close.c: New file.
2220         * mcore/cmb-exit.c: Ditto.
2221         * mcore/cmb-inbyte.c: Ditto.
2222         * mcore/cmb-outbyte.c: Ditto.
2223         * mcore/elf-cmb.ld: Ditto.
2224         * mcore/elf-cmb.specs: Ditto.
2225         * mcore/fstat.c: Ditto.
2226         * mcore/getpid.c: Ditto.
2227         * mcore/kill.c: Ditto.
2228         * mcore/lseek.c: Ditto.
2229         * mcore/open.c: Ditto.
2230         * mcore/pe-cmb.ld: Ditto.
2231         * mcore/pe-cmb.specs: Ditto.
2232         * mcore/print.c: Ditto.
2233         * mcore/putnum.c: Ditto.
2234         * mcore/raise.c: Ditto.
2235         * mcore/read.c: Ditto.
2236         * mcore/sbrk.c: Ditto.
2237         * mcore/stat.c: Ditto.
2238         * mcore/unlink.c: Ditto.
2239         * mcore/write.c: Ditto.
2240         * mcore/c-syscalls.c: Removed.
2241
2242 1999-05-07  Nick Clifton  <nickc@cygnus.com>
2243
2244         * mcore/syscalls.S (_write): Use 0x50FF instead of trap 1.
2245         Tidy up code layout.
2246
2247 1999-05-06  Nick Clifton  <nickc@cygnus.com>
2248
2249         * mcore/Makefile.in: Fix build rule.
2250         * mcore/syscalls.s: Rename to syscalls.S
2251
2252 1999-05-04  Nick Clifton  <nickc@cygnus.com>
2253
2254         * mcore/configure.in: Depend upon crt0.S not crt0.s.
2255         * mcore/configure: Regenerate.
2256
2257 1999-04-29  Nick Clifton  <nickc@cygnus.com>
2258
2259         * mcore/crt0.S: Renamed file from crt0.s.
2260         Only invoke init() and fini() routines for ELF builds.
2261         Use __bss_start__ and __bss_end__ to locate .bss section.
2262
2263 1999-04-26  Angela Marie Thomas <angela@cygnus.com>
2264
2265         * mips/array.ld:  Fix ELF ctor/dtor support.
2266         * mips/ddb.ld: Likewise.
2267         * mips/dve.ld: Likewise.
2268         * mips/idt.ld: Likewise.
2269         * mips/jmr3904app.ld: Likewise.
2270         * mips/lsi.ld: Likewise.
2271         * mips/nullmon.ld: Likewise.
2272         * mips/pmon.ld: Likewise.
2273         * mips/r5900.ld: Likewise.
2274         * mips/sky.ld: Likewise.
2275         * mips/vpu.ld: Likewise.
2276
2277 1999-04-22  Nick Clifton  <nickc@cygnus.com>
2278
2279         * mcore/crt0.s: Initialise data section, call _init and _fini.
2280
2281         * mcore/syscalls.s (_exit): Renamed from __exit.
2282
2283         * fr30/crt0.s (_start): Initialise arg[cv] after calling _init and
2284         atexit.
2285
2286 1999-04-21  Nick Clifton  <nickc@cygnus.com>
2287
2288         * mcore/crt0.s (_start): Use .long directive, not .word.
2289
2290         * mcore/syscalls.s (_sbrk): fix syntax.
2291
2292 1999-04-20  Jason Molenda  (jsm@bugshack.cygnus.com)
2293
2294         * sparc/sparc86.ld: Set alignment for the .data section.
2295
2296 1999-04-18  Nick Clifton  <nickc@cygnus.com>
2297
2298         * configure.in: Add support for mcore targets.
2299         * configure: Regenerate.
2300         * mcore: New directory.
2301         * mcore/Makefile.in: New File: meta Makefile.
2302         * mcore/configure.in: New File: meta configure file..
2303         * mcore/configure: New File: Generated.
2304         * mcore/crt0.s: New File: mcore startup code.
2305         * mcore/syscalls.s: New File: Assembler system call stubs.
2306         * mcore/c-syscalls.c: New File: C system call stubs.
2307
2308 Tue Apr 13 17:20:34 1999  Catherine Moore  <clm@cygnus.com>
2309
2310         * mips/array.ld:  Support linkonce sections.
2311         * mips/ddb.ld: Likewise.
2312         * mips/dve.ld: Likewise.
2313         * mips/idt.ld: Likewise.
2314         * mips/jmr3904app.ld: Likewise.
2315         * mips/jmr3904app-java.ld: Likewise.
2316         * mips/jmr3904dram.ld: Likewise.
2317         * mips/jmr3904dram-java.ld: Likewise.
2318         * mips/lsi.ld: Likewise.
2319         * mips/nullmon.ld: Likewise.
2320         * mips/pmon.ld: Likewise.
2321         * mips/r5900.ld: Likewise.
2322         * mips/sky.ld: Likewise.
2323         * mips/vpu.ld: Likewise.
2324
2325 Mon Apr 12 21:01:46 1999  Catherine Moore  <clm@cygnus.com>
2326
2327         * mips/array.ld:  Add ELF ctor/dtor support.
2328         * mips/ddb.ld: Likewise.
2329         * mips/dve.ld: Likewise.
2330         * mips/idt.ld: Likewise.
2331         * mips/jmr3904app.ld: Likewise.
2332         * mips/lsi.ld: Likewise.
2333         * mips/nullmon.ld: Likewise.
2334         * mips/pmon.ld: Likewise.
2335         * mips/r5900.ld: Likewise.
2336         * mips/sky.ld: Likewise.
2337         * mips/vpu.ld: Likewise.
2338
2339 Sun Apr 11 00:43:34 1999  Jim Wilson  <wilson@cygnus.com>
2340
2341         * i960/crt0.c (_start): Increase stack size to 256K.
2342
2343 Wed Mar 31 17:56:41 1999  Bob Manson  <manson@charmed.cygnus.com>
2344
2345         * i386/cygmon-salib.c: Add read and write syscall support.
2346         * i386/cygmon-syscall.h: Ditto.
2347
2348         * i386/cygmon-gmon.[ch]: Profile support.
2349
2350 Sun Feb 28 23:39:32 1999  Geoffrey Noer  <noer@cygnus.com>
2351
2352         * libnosys/configure.in: Check cygwin*, not cygwin32.
2353         * libnosys/configure: Regenerate.
2354
2355 1999-02-18  Tom Tromey  <tromey@cygnus.com>
2356
2357         * mips/configure: Rebuilt.
2358         * mips/configure.in (script_list): Added jmr3904dram-java and
2359         jmr3904app-java.
2360         * mips/jmr3904dram-java.ld: New file.
2361         * mips/jmr3904dram.ld: Don't mention -lqthreads.
2362         * mips/jmr3904app-java.ld: New file.
2363         * mips/jmr3904app.ld: Don't mention -lgcjcoop.
2364
2365 Wed Feb 17 13:27:24 1999  Jim Wilson  <wilson@cygnus.com>
2366
2367         * m68k/crt0.S (start): Use jpbl not jmi in coldfire code.
2368
2369 1999-02-18  Tom Tromey  <tromey@cygnus.com>
2370
2371         * Merge from branch:
2372
2373         Tue Feb 16 12:57:06 PST 1999  Angela Marie Thomas  <angela@cygnus.com>
2374
2375         * mips/jmr3904app.ld: Change -lqthreads to -lgcjcoop due to
2376         library name change.
2377
2378         Thu Feb  4 16:15:44 1999  Warren Levy  <warrenl@cygnus.com>
2379
2380         * mips/configure.in (script_list): Added jmr3904dram.ld.
2381         * mips/configure: Rebuilt.
2382
2383         Thu Jan 21 19:11:45 1999  Warren Levy  <warrenl@cygnus.com>
2384
2385         * mips/jmr3904dram.ld: Created.
2386
2387         Wed Dec 30 11:15:46 1998  Anthony Green  <green@cygnus.com>
2388
2389         * mips/jmr3904app.ld: libgcc is dependent on libqthreads, so
2390         it must be linked it.
2391
2392         Wed Dec 30 11:04:54 1998  Anthony Green  <green@cygnus.com>
2393
2394         * mips/jmr3904app.ld: Make sure the stack owns all 8k plus
2395         the padding allocated for alignment.
2396
2397         1998-11-23  Andrew Haley  <aph@viagra.cygnus.co.uk>
2398
2399         * mips/jmr3904-io.c: change get_mem_info() to use _mem_size
2400         imported from the linker script.
2401         * mips/jmr3904app.ld: Provide _mem_size.
2402
2403         * mips/jmr3904app.ld: Allocate 8k bytes for stack.
2404
2405         1998-11-19  Andrew Haley  <aph@viagra.cygnus.co.uk>
2406
2407         * mips/crt0.S: set argc to 0 before calling main()
2408         * get_mem_info() was incorrect; jmr3904 has 1M max of SRAM.
2409
2410         Wed Nov  4 15:28:44 1998  Anthony Green  <green@cygnus.com>
2411
2412         * mips/jmr3904-io.c: Implement get_mem_info().
2413
2414         Wed Nov  4 15:22:41 1998  Anthony Green  <green@cygnus.com>
2415
2416         * mips/Makefile.in: Rename libtx39jmr.a to libjmr3904.a.
2417         * mips/configure.in: Ditto.
2418         * mips/configure: Regenerate.
2419
2420         Tue Nov  3 15:39:14 1998  Angela Marie Thomas (angela@cygnus.com)
2421
2422         * mips/configure.in: Add jmr3904app to script list for tx39.
2423         * mips/configure: Regenerate.
2424
2425 1999-02-08  Nick Clifton  <nickc@cygnus.com>
2426
2427         * libnosys/configure.in: Add support for StrongARM target.
2428         * libnosys/configure: Regenerate.
2429
2430 Thu Feb  4 10:56:59 1999  Jeff Johnston  <jjohnstn@cygnus.com>
2431
2432         * d30v/syscalls.c (time): Added code to honor argument
2433         passed to time which is either a pointer to a time_t
2434         value to set or is the NULL pointer.
2435
2436 1999-02-03  Keith Seitz  <keiths@cygnus.com>
2437
2438         * m32r/m32r-lib.c (rx_char): Rename rx_uchar and return
2439         only unsigned chars.
2440         (getDebugChar2): Remove and integrate support into "M"
2441         packet code.
2442
2443 1999-01-29  Doug Evans  <devans@casey.cygnus.com>
2444
2445         * sparc/erc32-crt0.S (_exit): Set magic number for simulator.
2446         * sparc/traps.S (win_flush): Make sure %sp is valid before flushing
2447         all windows.
2448
2449 Tue Jan 19 06:19:51 1999  Jeffrey A Law  (law@cygnus.com)
2450
2451         * mn10300/crt0.S: Use ".stack" for the name of the stack section,
2452         not "._stack".  Remove mn10200 support.
2453         * mn10300/trap.S: Remove mn10200 support.
2454         * mn10300/sim.ld: Collect *(.stack) *(._stack) input sections into
2455         the .stack output section to be safe.
2456         * mn10300/eval.ld: Likewise.
2457
2458         * mn10200/crt0.S: Use ".stack" for the name of the stack section,
2459         not "._stack".
2460         * mn10200/sim.ld: Collect *(.stack) *(._stack) input sections into
2461         the .stack output section to be safe.
2462         * mn10200/eval.ld: Likewise.
2463
2464 1999-01-14  Nick Clifton  <nickc@cygnus.com>
2465
2466         * fr30/Makefile.in: Set target of install to be SIM_INSTALL not
2467         MON_INSTALL.
2468
2469         * fr30/crt0.s (_start): Use atexit to call C++ global
2470         destructors.  Patch from Mark Salter <msalter@cygnus.com>
2471
2472 1999-01-12  Nick Clifton  <nickc@cygnus.com>
2473
2474         * fr30/crt0.s: Remove .stack section - it is no longer necessary.
2475
2476 1999-01-11  Nick Clifton  <nickc@cygnus.com>
2477
2478         * fr30/crt0.s (_start): Add calls to _init and _fini for C++
2479         global constructor/destructor support.
2480
2481 1999-01-07  Nick Clifton  <nickc@cygnus.com>
2482
2483         * fr30/crt0.s (_start): Apply patch from Mark Salter
2484         <msalter@cygnus.com> to cope with initialising .bss areas that are
2485         not word sized.
2486
2487 1998-12-23  Michael Meissner  <meissner@cygnus.com>
2488
2489         * m68k/idp.ld (.eh_frame): Add section to the .text segment.
2490         (__{INIT,FINI}__SECTION__): Align to a 4 byte boundary.
2491         (.gcc_except_table): Ditto.
2492
2493 Mon Dec 21 22:45:05 1998  Mark Alexander  <marka@cygnus.com>
2494
2495         * sh/sh1lcevb.ld: Add DWARF sections.
2496         * sh/sh2lcevb.ld: Ditto.
2497         * sh/sh3lcevb.ld: Ditto.
2498         * sh/sh3bb.ld: Ditto.
2499
2500 Fri Dec 18 22:07:21 1998  Bob Manson  <manson@charmed.cygnus.com>
2501
2502         * i386/cygmon.ld: Make sure -lcygmon appears both before
2503         and after -lc, so we pick up functions from there in
2504         preference to libc functions.
2505
2506         * i386/cygmon-salib.c: Add syscalls for time and gettimeofday.
2507         Don't add __do_global_ctors () and __do_global_dtors () if
2508         we're on a coff target.
2509         (open): Add dummy function so plumhall will compile.
2510         (clock): Replacement for clock () syscall that uses
2511         gettimeofday().
2512
2513
2514 1998-12-18  Gavin Romig-Koch  <gavin@cygnus.com>
2515
2516         * mips/Makefile.in, mips/vr4300.S: Move the -mips3 into vr4300.S.
2517
2518 1998-12-17  Nick Clifton  <nickc@cygnus.com>
2519
2520         * fr30/syscalls.c: Include ../syscall.h not ../../sim/fr30/targ-vals.h
2521         (_open): Return file descriptor allocated by simulator.
2522         (isatty): Always false to avoid having to cope with reads from
2523         stdin.  For Now...
2524
2525 1998-12-16  Nick Clifton  <nickc@cygnus.com>
2526
2527         * fr30/Makefile.in: Add libraries to clean target.
2528
2529         * fr30/syscalls.c (_write): Save length so that it can be returned
2530         to caller.
2531
2532         * fr30/crt0.s (_start): Initialise argc, argv and envp before
2533         calling main().
2534
2535 1998-12-15  Gavin Romig-Koch  <gavin@cygnus.com>
2536
2537         * mips/ddb.ld (OUTPUT_ARCH): Remove.
2538
2539 1998-12-12  Nick Clifton  <nickc@cygnus.com>
2540
2541         * fr30/syscalls.c: Remove stub for abort and add stubs for _kill
2542         and _getpid.
2543
2544 1998-12-11  Nick Clifton  <nickc@cygnus.com>
2545
2546         * configure.in: Add support for fr30 target.
2547         * configure: Regenerate.
2548         * fr30: New directory.
2549         * fr30/Makefile.am: New file - build crt0.o and libsim.a
2550         * fr30/Makefile.in: New file - generate from Makefile.am.
2551         * fr30/configure.in: New file - support fr30 target
2552         * fr30/configure: New file - generate from configure.in.
2553         * fr30/crt0.s: New file - Basic executable startup code.
2554         * fr30/syscalls.c: New file - System call emulation library.
2555
2556 1998-12-11  Gavin Romig-Koch  <gavin@cygnus.com>
2557
2558         *  mips/crt0.S (_start): Change initialization of FR.
2559
2560 1998-12-08  James E Wilson  <wilson@wilson-pc.cygnus.com>
2561
2562         * i960/crt0.c (set_stack): Change return type to void.  Init SP to
2563         FP + 64 instead of FP.  Simplify code to align ptr.
2564         (_start): Call exit instead of _exit.  Delete local variable stack.
2565         Init stack to heap+4096.
2566         * i960/mon960.c (abort): Ifdef out.
2567         * i960/syscall.h: New file.
2568
2569 1998-12-04  Ken Raeburn  <raeburn@cygnus.com>
2570
2571         * mips/cma101.c (time): Add heuristic to handle Y2K overflow.
2572
2573 Tue Dec  1 17:57:52 1998  Stan Shebs  <shebs@andros.cygnus.com>
2574
2575         * config/ppc.mh (.s.o): Don't use CFLAGS_MRELOCATABLE when
2576         assembling.
2577
2578 Wed Nov 18 19:14:15 1998  Jim Wilson  <wilson@cygnus.com>
2579
2580         * mips/entry.S: Handle mips16 builds.
2581
2582 1998-10-30  Ian Molee  <imolee@cygnus.com>
2583
2584         * m32r/trapmon0.c: New file.  Mon2000 trap handler.
2585         * m32r/trapmon0.S: Removed.
2586         * m32/Makefile.in: Changed to reflect above-changed files.
2587
2588 Wed Oct 28 07:55:55 1998  Mark Alexander  <marka@cygnus.com>
2589
2590         * sparc/crt0.S: Move entry point to start of text section.
2591         Put the address of the data section at the start of the section,
2592         so the GDB sparclite loader can find it for a.out loads.
2593
2594 Mon Oct 26 13:11:41 1998  Jeffrey A Law  (law@cygnus.com)
2595
2596         * d30v/syscalls.c (time): Returns a time_t and accepts a pointer to
2597         a time_t as its argument.
2598
2599         * i386/cygmon-syscall.h: Fix bogus asm constraints.  You must not
2600         clobber a register that overlaps with an input or output.
2601
2602 Fri Oct 23 11:06:16 1998  John Metzler  <jmetzler@cygnus.com>
2603
2604         * mips/jmr3904-io.c (hardware_init_hook): Add file to support
2605         serial input and out put as required by libgloss read and write
2606         functions.
2607
2608         * mips/jmr3904app.ld : LInker script for tx39jmr3904 board. Uses
2609         addresses per eCos conventions, not original ROM monitor.
2610
2611         * configure.in: Add libtx39jmr.c to build target
2612
2613         * Makefile.in: rules for libtx39jmr.a and jmr3904-io.o
2614
2615 1998-10-15  Ian Molee  <imolee@cygnus.com>
2616
2617         * m32r/mon.specs: New file
2618         * m32r/trapmon0.S: New file
2619         * m32r/Makefile.in: Modified to add support for mon2000 trap0.
2620
2621 Tue Oct 13 11:52:03 1998  Jeff Johnston  <jjohnstn@cygnus.com>
2622
2623         * libnosys/warning.h: New file.
2624
2625 1998-10-06  Ken Raeburn  <raeburn@cygnus.com>
2626
2627         * mips/configure.in: Build nullmon stuff in default case.  Don't
2628         treat vr4100 specially.
2629
2630 Tue Oct  6 15:17:42 1998  Jeff Johnston  <jjohnstn@cygnus.com>
2631
2632         * libnosys/sbrk.c (_sbrk): Added reference to config.h.
2633         * libnosys/close.c (_close): Added stub warning outside of
2634         function body and added reference to config.h.
2635         * libnosys/execve.c (_execve): Ditto.
2636         * libnosys/fork.c (_fork): Ditto.
2637         * libnosys/fstat.c (_fstat): Ditto.
2638         * libnosys/getpid.c (_getpid): Ditto.
2639         * libnosys/gettod.c (_gettimeofday): Ditto.
2640         * libnosys/isatty.c (_isatty): Ditto.
2641         * libnosys/kill.c (_kill): Ditto.
2642         * libnosys/link.c (_link): Ditto.
2643         * libnosys/lseek.c (_lseek): Ditto.
2644         * libnosys/open.c (_open): Ditto.
2645         * libnosys/read.c (_read): Ditto.
2646         * libnosys/stat.c (_stat): Ditto.
2647         * libnosys/times.c (_times): Ditto.
2648         * libnosys/unlink.c (_unlink): Ditto.
2649         * libnosys/wait.c (_wait): Ditto.
2650         * libnosys/write.c (_write): Ditto.
2651         * libnosys/acconfig.h: New file.
2652         * libnosys/config.h.in: New file.
2653         * libnosys/exit.c: Removed as _exit cannot be stubbed.
2654         * libnosys/Makefile.in: Regenerated.
2655         * libnosys/configure.in: Configure header file specified.
2656         * libnosys/configure: Regenerated.
2657
2658 Wed Sep 30 12:45:43 1998  Bob Manson  <manson@charmed.cygnus.com>
2659
2660         * i386/cygmon.ld: Increase memory limits; put the initial
2661         executable above 1MB.
2662
2663 Fri Sep 25 13:49:22 1998  Bob Manson  <manson@charmed.cygnus.com>
2664
2665         * i386/configure.in: Changed crt0.c to cygmon-salib.c.
2666
2667 Wed Sep 23 19:25:46 1998  Bob Manson  <manson@charmed.cygnus.com>
2668
2669         * configure.in: Add i386-*-elf* triplet.
2670         * i386/*: Support for i386 targets.
2671
2672 Wed Sep 16 19:43:52 1998  Doug Evans  <devans@canuck.cygnus.com>
2673
2674         * m32r/m32r-lib.c: Rename -DMSA2000 to -DREVC and reverse test.
2675         (exceptionHandler,getExceptionHandler): Add cast to avoid warning.
2676
2677 Wed Sep  9 19:22:03 1998  Mark Alexander  <marka@cygnus.com>
2678
2679         * sparc/Makefile.in: Remove cache86x.o, not needed any more.
2680         * sparc/sparclite.h: (read_asr, write_asr): Define.
2681         * sparc/cache.c (is_danlite): New function.
2682         (cache_off, cache_on, flush_i_cache): Test for DANlite.
2683         * sparc/salib.c (update_leds): Allow user to disable LED flashing.
2684         * sparc/sparc86x.ld: Prevent section overlap.
2685
2686 1998-09-04  Keith Seitz  <keiths@cygnus.com>
2687
2688         * m32r/m32r-lib.c (rx_rdy): Add support for MSA2000G01 board.
2689         (rx_char): Ditto.
2690         (getDebugChar2): New function to support binary downloads (gdb
2691         remote protocol "X" command).
2692         (exceptionHandler): Add support for MSA2000G01 board.
2693         (getExceptionHandler): Ditto.
2694
2695 1998-08-20  Michael Meissner  <meissner@cygnus.com>
2696
2697         * libnosys/gettod.c: Include sys/time.h so that struct timezone is
2698         declared.
2699
2700 Sun Aug 16 10:46:43 1998  Mark Alexander  <marka@cygnus.com>
2701
2702         * sparc/Makefile.in: Add new BSP for sparc86x (DANlite).
2703         * sparc/salib.c (outbyte): Add hook for GDB stub.
2704         (cache_off, cache_on, flush_i_cache): Move to cache.c.
2705         * sparc/cache.c: New file for sparclite-specific cache code.
2706         * sparc/cache-86x.c: New file for sparc86x-specific cache code.
2707         * sparc/sparc86x.ld: New linker script for sparc86x.
2708         * sparc/crt0.S: Disable broken data relocation code.
2709         * sparc/sparcl-stub.c (outbyte_stub): New function for redirecting
2710         standard output to GDB.
2711         (handle_exception): Initialize outbyte hook.
2712
2713 Tue Aug 11 13:27:31 1998  Jim Wilson  <wilson@cygnus.com>
2714
2715         * m68k/idp.ld (__INIT_SECTION__): Align to 2 byte boundary.
2716         * m68k/bcc.ld, m68k/mvme135.ld, m68k/mvme162.ld: Likewise.
2717         * m68k/sbc5204.ld, m68k/sbc5206.ld: Likewise.
2718
2719 1998-08-11  Jason Merrill  <jason@yorick.cygnus.com>
2720
2721         * mn10300/{sim.ld,eval.ld}: Add init_priority support.
2722
2723 Tue Aug 11 10:04:05 1998  Jeffrey A Law  (law@cygnus.com)
2724
2725         * mn10200/sim.ld: Rework code to insert pad before the start of the
2726         data segment.
2727         * mn10200/eval.ld: Likewise.
2728         * mn10300/sim.ld: Likewise.
2729         * mn10300/eval.ld: Likewise.
2730
2731 Sat Aug  8 09:46:37 1998  Jim Wilson  <wilson@cygnus.com>
2732
2733         * mips/cma101.c (__sizemem): New local variable extra.  Align base
2734         to int boundary.
2735
2736 Tue Jul 28 10:57:12 1998  Mark Alexander  <marka@cygnus.com>
2737
2738         * sparc/Makefile.in (ERC32_OBJS): Add fixctors.
2739         * sparc/erc32-crt0.S: Call __fix_ctors just before calling main.
2740         * sparc/fixctors.c: New file.
2741
2742 Sat Jul 18 07:15:33 1998  Mark Alexander  <marka@cygnus.com>
2743
2744         * sparc/crt0.S (win_ovf_trap, win_unf_trap): Use correct names for
2745         extern functions win_ovf and win_unf; fixes unresolved symbols
2746         in COFF.
2747
2748 Mon Jul 13 17:50:41 1998  Jeff Johnston  <jjohnstn@cygnus.com>
2749
2750         * configure.in: Added libnosys as subdir.
2751         * configure: Rebuilt configure based on configure.in.
2752         * libnosys/close.c (_close): Part of new libnosys stub library
2753         to use for situations with no operating system support.
2754         * libnosys/environ.c (environ): ditto.
2755         * libnosys/execve.c (_execve): ditto.
2756         * libnosys/exit.c (_exit): ditto.
2757         * libnosys/fork.c (_fork): ditto.
2758         * libnosys/fstat.c (_fstat): ditto.
2759         * libnosys/getpid.c (_getpid): ditto.
2760         * libnosys/gettod.c (_gettimeofday): ditto.
2761         * libnosys/isatty.c (_isatty): ditto.
2762         * libnosys/kill.c (_kill): ditto.
2763         * libnosys/link.c (_link): ditto.
2764         * libnosys/lseek.c (_lseek): ditto.
2765         * libnosys/open.c (_open): ditto.
2766         * libnosys/read.c (_read): ditto.
2767         * libnosys/sbrk.c (_sbrk): ditto.
2768         * libnosys/stat.c (_stat): ditto.
2769         * libnosys/times.c (_times): ditto.
2770         * libnosys/unlink.c (_unlink): ditto.
2771         * libnosys/wait.c (_wait): ditto.
2772         * libnosys/write.c (_write): ditto.
2773         * libnosys/Makefile.in : Makefile.in for creating libnosys Makefile.
2774         * libnosys/configure.in: configure.in to create libnosys configure.
2775         * libnosys/configure: Configure for libnosys library.
2776
2777 Mon Jul 13 14:13:07 EDT 1998  Jim Lemke  <jlemke@cygnus.com>
2778
2779         * sim/mips.ld: Clarify a comment.
2780
2781 Tue Jul  7 21:12:41 1998  Mark Alexander  <marka@cygnus.com>
2782
2783         * sparc/elfsim.ld: Make it work on both a.out and ELF.
2784         * sparc/traps.S: Rename trap_table label to work on both a.out
2785         and ELF.  Put the address of the data section at the start
2786         of the section, so the simulator loader can find it for a.out loads.
2787
2788 Thu Jun 25 09:24:53 1998  Mark Alexander  <marka@cygnus.com>
2789
2790         * config/mn10200.mt: New file.
2791
2792 Tue Jun 23 22:45:49 1998  Mark Alexander  <marka@cygnus.com>
2793
2794         * mn10200/crt0.S: Don't waste top four bytes of stack.
2795         * mn10200/eval.ld: Fix stack top address.
2796
2797 Mon Jun 22 09:30:22 1998  Drew Moseley  <dmoseley@cygnus.com>
2798
2799         * mips/dvemon.c: Remove the close function and get it from the generic
2800         close.o
2801         * mips/Makefile.in (DVEOBJS): Add generic open.o and close.o to the DVEOBJS
2802         list to ensure that the proper API's are included.
2803
2804 Wed Jun 17 12:33:05 1998  Mark Alexander  <marka@cygnus.com>
2805
2806         * configure.in: Add mn10200 support.
2807         * configure: Regenerate.
2808         * mn10200/Makefile.in: New file.
2809         * mn10200/_exit.c: New file.
2810         * mn10200/access.c: New file.
2811         * mn10200/chmod.c: New file.
2812         * mn10200/chown.c: New file.
2813         * mn10200/close.c: New file.
2814         * mn10200/configure: New file.
2815         * mn10200/configure.in: New file.
2816         * mn10200/creat.c: New file.
2817         * mn10200/crt0.S: New file.
2818         * mn10200/crt1.c: New file.
2819         * mn10200/eval.ld: New file.
2820         * mn10200/execv.c: New file.
2821         * mn10200/execve.c: New file.
2822         * mn10200/fork.c: New file.
2823         * mn10200/fstat.c: New file.
2824         * mn10200/getpid.c: New file.
2825         * mn10200/gettime.c: New file.
2826         * mn10200/isatty.c: New file.
2827         * mn10200/kill.c: New file.
2828         * mn10200/lseek.c: New file.
2829         * mn10200/open.c: New file.
2830         * mn10200/pipe.c: New file.
2831         * mn10200/read.c: New file.
2832         * mn10200/sbrk.c: New file.
2833         * mn10200/sim.ld: New file.
2834         * mn10200/stat.c: New file.
2835         * mn10200/test.c: New file.
2836         * mn10200/time.c: New file.
2837         * mn10200/times.c: New file.
2838         * mn10200/trap.S: New file.
2839         * mn10200/trap.h: New file.
2840         * mn10200/unlink.c: New file.
2841         * mn10200/utime.c: New file.
2842         * mn10200/wait.c: New file.
2843         * mn10200/write.c: New file.
2844
2845 Fri Jun 12 17:26:56 1998  Doug Evans  <devans@seba.cygnus.com>
2846
2847         * m32r/sys/syscall.h: Delete.  Use ./syscall.h now.
2848         * m32r/trap0.S: Renamed from trap.S.
2849         * m32r/eit.h: New file.
2850         * m32r/crtsysc.c: Delete, split up into several files.
2851         * m32r/chmod.c: New file.
2852         * m32r/close.c: New file.
2853         * m32r/exit.c: New file.
2854         * m32r/fstat.c: New file.
2855         * m32r/getpid.c: New file.
2856         * m32r/isatty.c: New file.
2857         * m32r/kill.c: New file.
2858         * m32r/lseek.c: New file.
2859         * m32r/open.c: New file.
2860         * m32r/raise.c: New file.
2861         * m32r/read.c: New file.
2862         * m32r/sbrk.c: New file.
2863         * m32r/stat.c: New file.
2864         * m32r/unlink.c: New file.
2865         * m32r/utime.c: New file.
2866         * m32r/write.c: New file.
2867         * m32r/Makefile.in (SYSCALLS): Delete.
2868         (LIBOBJS,LIBGLOSS): New variables.
2869         (all,install): Update.
2870         (libgloss.a): New rule.
2871
2872 Thu Jun 11 08:38:42 1998  Doug Evans  <devans@seba.cygnus.com>
2873
2874         * sparc/cygmon-salib.c (setitimer): Add `const' to second arg.
2875         (gettimeofday): Change type of 2nd arg to struct timezone *.
2876
2877 Tue Jun  9 12:02:21 1998  Ian Carmichael  <iancarm@cygnus.com>
2878
2879         * mips/syscalls.c (sbrk): Allow memory allocation to work
2880         for configurations which don't have memory at K1BASE.
2881         * mips/cma101.c (__sizemem): Ditto.
2882
2883 Tue Jun  9 13:17:28 1998  Michael Snyder  <msnyder@cleaver.cygnus.com>
2884
2885         * m68k/emc-stub.c: New file, stub for the EMC Symmetrix target.
2886         * m68k/gdbinit.emc: New file, user support for special features
2887         supported only on the EMC Symmetrix target.
2888
2889 Fri Jun  5 16:40:20 1998  Mark Alexander  <marka@cygnus.com>
2890
2891         * sparc/elfsim.ld: Fix ctor and dtor tables to work in both
2892         little- and big-endian executables.
2893
2894 Wed Jun  3 23:09:38 1998  Mark Alexander  <marka@cygnus.com>
2895
2896         * sparc/sparcl-stub.c: Include asm.h.  Use STRINGSYM macro to generate
2897         proper prefix for public assembly language labels.
2898         * sparc/ex930.ld: Add DWARF sections.
2899         * sparc/ex931.ld: Ditto.
2900         * sparc/ex934.ld: Ditto.
2901         * sparc/elfsim.ld: Simplify and clean up.
2902         * sparc/Makefile.in: Build ex934 BSP.  Allow little-endian builds.
2903         * sparc/traps.S (win_flush): Rewrite using code from Cygmon
2904         to eliminate register corruption.
2905
2906 Mon Jun  1 15:21:05 1998  Geoffrey Noer  <noer@cygnus.com>
2907
2908         * sparc/cygmon-salib.c: Stop including sys/itimer.h
2909
2910 Sun May 31 10:46:37 1998  Michael Meissner  <meissner@cygnus.com>
2911
2912         * rs6000/Makefile.in (SOLARIS_*): Don't build solaris bsp's any
2913         more.
2914
2915 Fri May 22 13:50:55 1998  Angela Marie Thomas (angela@cygnus.com)
2916
2917         * mn10300/Makefile.in: Install sim.ld.
2918
2919 Wed May 20 22:45:11 1998  Mark Alexander  <marka@cygnus.com>
2920
2921         * sparc/elfsim.ld: Add constructor and destructor tables.
2922
2923 Sat May 16 17:08:17 1998  Bob Manson  <manson@charmed.cygnus.com>
2924
2925         * sparc/cygmon-salib.c (__getProgramArgs): Use asm constraints.
2926
2927 Fri May 15 16:50:36 1998  Mark Alexander  <marka@cygnus.com>
2928
2929         * sparc/traps.S (win_flush): Don't destroy %g1 and %g2.
2930
2931 Fri May 15 15:59:30 1998  Gavin Koch  <gavin@cygnus.com>
2932
2933         * mips/configure.in: Add idt to tx39 chain.
2934         * mips/configure: Rebuild.
2935
2936 Fri May 15 15:48:28 1998  Gavin Koch  <gavin@cygnus.com>
2937
2938         * mips/crt0.S (__stackbase): Added.
2939         (zerobss): Initialize __stackbase.
2940
2941 1998-05-13  Brendan Kehoe  <brendan@cygnus.com>
2942
2943         * mips/configure.in: Also grok `mipstx39*-*-*'.
2944         * mips/configure: Regenerated.
2945
2946 Mon May 11 15:07:12 1998  Bob Manson  <manson@charmed.cygnus.com>
2947
2948         * configure.in: Added powerpcle target.
2949         * configure: Regenerated.
2950
2951 Thu May  7 16:43:37 1998  Mark Alexander  <marka@cygnus.com>
2952
2953         * sparc/elfsim.ld (OUTPUT_FORMAT): Add little-endian support.
2954
2955         * sparc/crt0.S (_start): Define label for ELF targets.
2956         * sparc/salib.c: Include asm.h.  Use STRINGSYM macro to generate
2957         proper prefix for public assembly language labels.
2958         (write, read): Disable to avoid conflict with generic versions
2959         of these functions.
2960         * sparc/erc32-stub.c: Move STRINGSYM macro to sparc/asm.h.
2961         * sparc/asm.h: Move STRINGSYM macro here from sparc/erc32-stub.c
2962
2963 Mon May  4 08:30:58 1998  Mark Alexander  <marka@cygnus.com>
2964
2965         * sparc/configure.in: Treat sparc86x as a sparclite.
2966         * sparc/configure.in: Ditto.
2967         * sparc/Makefile.in (slite-install): Install missing files
2968         for simulator.
2969
2970 Thu Apr 30 16:41:15 1998  John Metzler  <jmetzler@cygnus.com>
2971
2972         * mips/configure.in: adjust target type pattern to export nullmon.ld
2973         * mips/configure: regenerated
2974
2975 Mon Apr 27 21:38:18 1998  Mark Alexander  <marka@cygnus.com>
2976
2977         * configure.in: Added sparc86x configuration.
2978         * configure: Ditto.
2979
2980 Wed Apr 22 21:45:13 1998  Jeffrey A Law  (law@cygnus.com)
2981
2982         * mips/crt0.S: Increase stack alignment.
2983
2984 Fri Apr 10 21:17:48 1998  Mark Alexander  <marka@cygnus.com>
2985
2986         * sparc/traps.S (win_flush): Prevent immediate window underflow
2987         trap on return.  Miscellaneous comment formatting cleanup.
2988
2989 Tue Apr  7 18:34:51 1998  Mark Alexander  <marka@cygnus.com>
2990
2991         * sparc/elfsim.ld: Align BSS at 8-byte boundary.
2992
2993 Mon Apr  6 13:12:32 1998  Mark Salter  <msalter@chef.cygnus.com>
2994
2995         * rs6000/ads-io.c (write): Added write().
2996
2997         * rs6000/Makefile.in: Changed objects used for libads to be
2998         new ads specific object files instead of some mvme objects.
2999
3000         * Added ads-io.c and ads-exit.c to provide function stubs which
3001         are safe on ads board (SDS monitor).
3002
3003         * rs6000/mbx-outbyte.c (outbyte): Foundry console output
3004         is fixed, so re-enable output char quoting for mbx.
3005
3006         * rs6000/mbx.specs: Added blank line to end of file. There
3007         were link errors without it?
3008
3009         * rs6000/mbx.specs: Use mbx.ld script for linking.
3010
3011         * rs6000/mbx-outbyte.c: Don't quote characters. We don't want
3012         gdb to display program output, yet.
3013
3014         * rs6000/Makefile.in (install-mbx): Fixed install of mbx.specs
3015         file.
3016
3017         * rs6000/Makefile.in: Support for MBX EPPCBug monitor.
3018         * rs6000/mbx-{exit,inbyte,outbyte,print}.c: New files for MBX.
3019         * rs6000/mbx.ld,mbx.specs: New files for MBX.
3020
3021 Wed Apr  1 21:42:40 1998  Mark Alexander  <marka@cygnus.com>
3022
3023         * sparc/elfsim.ld: New linker script for running ELF programs
3024         in erc32 simulator.
3025         * sparc/erc32-crt0.S: Disable copying of data segment.
3026         * sparc/erc32-stub.c: Generate correct public name for breakinst.
3027         * sparc/Makefile.in: Build erc32 library always.
3028
3029 Thu Apr  2 11:24:32 1998  Andrew Cagney  <cagney@b1.cygnus.com>
3030
3031         * mips/syscalls.c (sbrk): Check word size correct for
3032         get_mem_info.
3033
3034 Fri Mar 27 08:55:52 1998  Mark Alexander  <marka@cygnus.com>
3035
3036         * mips/crt0.S: Insert NOP before _start to keep GDB happy.
3037         * mips/dve.ld: Eliminate references to VR4300.
3038
3039 Thu Mar 26 19:47:36 1998  Mark Alexander  <marka@cygnus.com>
3040
3041         * mn10300/eval.ld: Don't use absolute path in SEARCH_DIR.
3042         * mn10300/sim.ld: Ditto.
3043
3044 Wed Mar 25 10:49:49 1998  Bob Manson  <manson@charmed.cygnus.com>
3045
3046         * sparc/cygmon-salib.c (__getProgramArgs): New function.
3047
3048         * sparc/cygmon-crt0.S (init): Call __getProgramArgs.
3049
3050         * configure.in: Added sparc64 configuration.
3051
3052         * configure: Regenerated.
3053
3054 Tue Mar 24 10:44:41 1998  Mark Alexander  <marka@cygnus.com>
3055
3056         * mn10300/Makefile.in: Install libraries, not just linker scripts.
3057
3058 Tue Mar 24 09:52:28 1998  Mark Alexander  <marka@cygnus.com>
3059
3060         * config/mn10300.mt: New file
3061         * mn10300/configure.in: Use mn10300.mt as target makefile fragment
3062         instead of nothing at all.
3063         * mn10300/configure: Ditto.
3064
3065 Tue Mar 24 16:59:06 1998  Stu Grossman  <grossman@bhuna.cygnus.co.uk>
3066
3067         * doc/configure:  Regenerate with autoconf 2.12.1 to fix shell
3068         issues for NT native builds.
3069
3070 Mon Mar 16 18:51:11 1998  Bob Manson  <manson@charmed.cygnus.com>
3071
3072         * sparc/cygmon-crt0.S: Make start a global symbol (for the linker
3073         script; we also need to make SYM(start) global).
3074
3075 Wed Mar 11 10:24:39 1998  Stan Cox  <scox@rtl.cygnus.com>
3076
3077         * sparc/cygmon.ld.src (.debug*): Added dwarf sections.
3078
3079 Fri Mar  6 23:41:54 1998  Bob Manson  <manson@charmed.cygnus.com>
3080
3081         * sparc/cygmon.ld.src: Use TARGET_RAM_START.
3082
3083         * sparc/Makefile.in (SLITE_RAM_START): Add.
3084         (SPARC_RAM_START): Add.
3085         (SPARC64_RAM_START): Add.
3086         (SLITE_ALL): Add cygmon object files and linker script.
3087         slite-install: Install CygMon libraries and linker script.
3088
3089 Mon Mar  2 19:36:12 1998  Michael Meissner  <meissner@cygnus.com>
3090
3091         * rs6000/ads.ld: Add default attributes to memory region.
3092         * a29k/{p3dgps,sa29200{,b}}.ld: Ditto.
3093         * hp74x/hppa.ld: Ditto.
3094         * m68k/{bcc,idp,mvme{135,162},sbc520{4,6}}.ld: Ditto.
3095         * pa/{op50n,w89k}.ld: Ditto.
3096         * sh/{sh1{l,2,3}cevb,sh3bb}.ld: Ditto.
3097         * sparc/{erc32,ex93{0,1,4}}.ld: Ditto.
3098
3099 Fri Feb 27 17:15:35 1998  Mark Alexander  <marka@cygnus.com>
3100
3101         * mn10300/configure.in (AC_INIT): Use crt0.S instead of crt0-eval.S.
3102
3103 Fri Feb 27 17:39:23 1998  Jeffrey A Law  (law@cygnus.com)
3104
3105         * configure.in: Use "mn10300" subdir for "mn10300-*-*".
3106
3107 Mon Feb 23 20:29:42 1998  Mark Alexander  <marka@cygnus.com>
3108
3109         * mn10300/Makefile.in (GENOBJS): Remove system calls no longer
3110         supported.
3111         * mn10300/trap.h: Use generic syscall.h.
3112         * mn10300/sys/syscall.h: Removed in favor of generic syscall.h.
3113
3114 Mon Feb 23 16:19:17 1998  Gavin Koch  <gavin@cygnus.com>
3115
3116         * mips/Makefile.in (cma101.o): Add rule to explicitly use -mno-mips16.
3117         * mips/cma101.c: Reverse my previous change.
3118         Add #ifdef __mips16 then #error.
3119
3120 Mon Feb 23 11:29:33 1998  Mark Alexander  <marka@cygnus.com>
3121
3122         * mn10300/Makefile.in: Add rules for building libeval.a.
3123         * mn10300/configure: Don't use default.mt.
3124         * mn10300/configure.in: Ditto.
3125         * mn10300/eval.ld: Replace with modified version of default script.
3126
3127         * mn10300/_exit.c: New file for libeval.a.
3128         * mn10300/access.c: Ditto.
3129         * mn10300/chmod.c: Ditto.
3130         * mn10300/chown.c: Ditto.
3131         * mn10300/close.c: Ditto.
3132         * mn10300/creat.c: Ditto.
3133         * mn10300/crt0.S: Ditto.
3134         * mn10300/crt1.c: Ditto.
3135         * mn10300/execv.c: Ditto.
3136         * mn10300/execve.c: Ditto.
3137         * mn10300/fork.c: Ditto.
3138         * mn10300/fstat.c: Ditto.
3139         * mn10300/getpid.c: Ditto.
3140         * mn10300/gettime.c: Ditto.
3141         * mn10300/isatty.c: Ditto.
3142         * mn10300/kill.c: Ditto.
3143         * mn10300/lseek.c: Ditto.
3144         * mn10300/open.c: Ditto.
3145         * mn10300/pipe.c: Ditto.
3146         * mn10300/read.c: Ditto.
3147         * mn10300/sbrk.c: Ditto.
3148         * mn10300/sim.ld: Ditto.
3149         * mn10300/stat.c: Ditto.
3150         * mn10300/time.c: Ditto.
3151         * mn10300/times.c: Ditto.
3152         * mn10300/trap.S: Ditto.
3153         * mn10300/trap.h: Ditto.
3154         * mn10300/unlink.c: Ditto.
3155         * mn10300/utime.c: Ditto.
3156         * mn10300/wait.c: Ditto.
3157         * mn10300/write.c: Ditto.
3158         * mn10300/sys/syscall.h: Ditto.
3159
3160 Fri Feb 20 17:19:22 1998  Gavin Koch  <gavin@cygnus.com>
3161
3162         * mips/cma101.c: #ifdef out whole file if mips16.
3163
3164 Thu Feb 19 13:05:58 1998  Bob Manson  <manson@charmed.cygnus.com>
3165
3166         * i960/*: Revised.
3167
3168 Wed Feb 18 12:00:20 1998  Jeff Johnston  <jjohnstn@cygnus.com>
3169
3170         * m68k/crt0.S (start): Fixed code that clears .bss.  Code
3171         was using dbra instruction and did not account for the fact
3172         that the instruction branches until counter is -1, not 0.
3173
3174 Tue Feb 17 18:21:52 1998  Mark Alexander  <marka@cygnus.com>
3175
3176         * mn10300/Makefile.in: New file for MN10300 eval board support.
3177         * mn10300/configure: Ditto.
3178         * mn10300/configure.in: Ditto.
3179         * mn10300/crt0-eval.S: Ditto.
3180         * mn10300/eval.ld: Ditto.
3181         * mn10300/test.c: Ditto.
3182
3183 Tue Feb 17 19:55:47 1998  Gavin Koch  <gavin@cygnus.com>
3184
3185         * mips/vr4300.S (__previous): Fix comment type-o in
3186         previous change.
3187
3188 Tue Feb 17 10:47:45 1998  Gavin Koch  <gavin@cygnus.com>
3189
3190         * mips/vr4300.S (__previous,baseaddr,res_baseaddr):
3191         Figure the length of the exception handler at runtime
3192         rather than compile time.
3193
3194 Tue Feb  3 14:07:51 1998  Ian Lance Taylor  <ian@cygnus.com>
3195
3196         * configure.in: When running config-ml.in, put --enable-multilib
3197         before ac_configure_args, so that --disable-multilib can override
3198         it.
3199         * configure: Rebuild.
3200
3201 Fri Jan  9 17:10:59 1998  Mark Alexander  <marka@cygnus.com>
3202
3203         * mips/Makefile.in (LSIOBJS, DVEOBJS): Add part-specific objects.
3204
3205 Mon Jan  5 17:01:45 1998  Mark Alexander  <marka@cygnus.com>
3206
3207         * config/mips.mt: Add rules for read.o and write.o.
3208         * mips/dvemon.c: New file to support Densan DVE-R3900 board.
3209         * mips/dve.ld: New file to support Densan DVE-R3900 board.
3210         * mips/Makefile.in: Add rules for Densan support library libdve.a.
3211         * mips/configure.in: Build libdve.a for tx39 targets.
3212         * mips/configure: Ditto.
3213
3214 Tue Dec 30 15:34:17 1997  Bob Manson  <manson@charmed.cygnus.com>
3215
3216         * sparc/Makefile.in: Add define for TARGET_CPU_$(CPU).
3217
3218         * sparc/cygmon-salib.c: If TARGET_CPU_SPARC64, include
3219         sys/types.h, and define _open_r, _close_r, etc.
3220
3221 Sun Dec 28 17:15:50 1997  Bob Manson  <manson@charmed.cygnus.com>
3222
3223         * sparc/cygmon-salib.c (_open_r, _close_r): New functions.
3224         (read, write): If the fd isn't 0, 1, or 2, return an error.
3225
3226 Fri Dec 26 18:45:28 1997  Bob Manson  <manson@charmed.cygnus.com>
3227
3228         * sparc/cygmon-salib.c (_sbrk_r, _fstat_r,_brk_r): Define.
3229
3230         * sparc/cygmon-crt0.S: Zero out %fp so backtraces from gdb work
3231         properly.
3232
3233         * sparc/configure.in: Set CYGMONLDSCRIPTTEMPL appropriately.
3234
3235         * sparc/Makefile.in ($(objdir)/cygmon.ld): Use CYGMONLDSCRIPTTEMPL
3236         to determine what template file we use.
3237
3238 1997-12-22  Felix Lee  <flee@cygnus.com>
3239
3240         * rs6000/sim-errno.c (_cerror): need to return -1.
3241         * rs6000/sol-cfuncs.c (_cerror): likewise.
3242
3243 Mon Dec 22 16:54:31 1997  Bob Manson  <manson@charmed.cygnus.com>
3244
3245         * sparc/cygmon-crt0.S: Add stack bias code if TARGET_CPU_SPARC64 is
3246         defined. Allocate 128 bytes for a frame if sparc64.
3247
3248         * sparc/cygmon.ld.src: New file, replaced cygmon.ld.
3249
3250         * sparc/Makefile.in (SPARC_OBJ_FORMAT): Added.
3251         (SPARC64_ALL,SPARC64_INSTALL,SPARC64_OBJ_FORMAT): Added.
3252         ($(objdir)/cygmon.ld): Create from $(objdir)/cygmon.ld.src.
3253
3254         * sparc/configure.in: Add sparc64 to CPU list.
3255         * sparc/configure: Regenerated.
3256         * configure: Regenerated.
3257
3258 Sun Dec 21 18:19:27 1997  Bob Manson  <manson@charmed.cygnus.com>
3259
3260         * configure.in: Added sparc64-elf configuration.
3261
3262 Wed Dec 10 19:15:26 1997  Andrew Cagney  <cagney@b1.cygnus.com>
3263
3264         * mips/pmon.ld, mips/ddb.ld: Add handling of DWARF
3265         sections. Copied from mips/idt.ld.
3266
3267 Wed Dec 10 12:31:04 1997  Mark Alexander  <marka@cygnus.com>
3268
3269         * mips/configure: Add entry.o to LSI library.
3270         * mips/configure.in: Ditto.
3271         * mips/crt0.S: Declare init hooks as .text to avoid linker errors.
3272         * mips/pmon.S: Don't use 64-bit instructions on 32-bit EABI machines.
3273         * mips/entry.S: New file (MIPS16 entry/exit exception handler).
3274
3275 Tue Dec  9 18:51:45 1997  Michael Meissner  <meissner@cygnus.com>
3276
3277         * d30v/crt0.S (_start): Don't load r1 with 32 anymore.  Zero out
3278         the 3 bss areas.
3279
3280 Fri Nov 28 22:34:14 1997  Bob Manson  <manson@charmed.cygnus.com>
3281
3282         * sparc/cygmon-salib.c (open): New syscall.
3283
3284         * sparc/cygmon.ld: Add gcc_except_table section.
3285
3286         * sparc/cygmon-crt0.S: Call __install_signal_handler.
3287         Run ctors/dtors as appropriate.
3288
3289         * sparc/cygmon-salib.c (gettimeofday): New syscall.
3290         (stime): Ditto.
3291         (add_mapping): Ditto.
3292         (remove_mapping): Ditto.
3293         (__install_signal_handler): Ditto.
3294
3295 Wed Nov 26 15:25:11 1997  Michael Meissner  <meissner@cygnus.com>
3296
3297         * rs6000/mcount.S: New file to in case no profiling module was
3298         defined.
3299
3300         * rs6000/Makefile.in (OBJS): Add mcount.o
3301         (mcount.o): Depend on mcount.S.
3302
3303 Mon Nov 24 23:25:07 1997  Bob Manson  <manson@charmed.cygnus.com>
3304
3305         * sparc/cygmon.ld: Add linkonce sections.
3306
3307 Mon Nov 24 18:42:55 1997  Michael Meissner  <meissner@cygnus.com>
3308
3309         * d30v/syscalls.c (__syscall): Correct setting errno.
3310
3311 Sun Nov 23 17:49:45 1997  Bob Manson  <manson@charmed.cygnus.com>
3312
3313         * sparc/Makefile.in: Removed TARGET_CFLAGS.
3314         * sparc/configure.in: Ditto.
3315         * sparc/configure: Regenerated.
3316
3317 Fri Nov 21 21:21:23 1997  Michael Meissner  <meissner@cygnus.com>
3318
3319         * syscall.h: Remove d30v from comments.
3320
3321         * d30v/syscalls.c: Use common syscall.h file, move setting errno
3322         into common function, rather than have each stub do it.
3323
3324         * d30v/Makefile.in (syscalls.c): Use common syscall.h, not the old
3325         d30v specific version.
3326         (clean): Properly remove libraries.
3327
3328         * d30v/sys/syscall.h: Delete.
3329
3330 Wed Nov 19 16:13:00 1997  Doug Evans  <devans@seba.cygnus.com>
3331
3332         * rs6000/Makefile.in (unlink.o): Add rule for.
3333
3334         * syscall.h: New file.
3335
3336 Tue Nov 18 17:22:18 1997  Doug Evans  <devans@seba.cygnus.com>
3337
3338         * sparc/asm.h (CONCAT1): Use __USER_LABEL_PREFIX__.
3339
3340         * sparc/Makefile.in: Reorganize file.
3341
3342         * sparc/Makefile.in: Rename all occurences of SIM to ERC32.
3343         (all): Don't build erc32 support any more (never installed anyway).
3344         * sparc/erc32-io.c: Renamed from sim-io.c.
3345         * sparc/erc32-stub.c: Renamed from sim-stub.c.
3346         * sparc/erc32-crt0.S: Renamed from sim-crt0.S.
3347         * sparc/erc32.ld: Renamed from sim.ld.
3348         * sparc/configure.in (AC_INIT): Update.
3349         * sparc/configure: Regenerate.
3350
3351 Tue Nov 18 13:54:46 1997  Michael Meissner  <meissner@cygnus.com>
3352
3353         * d30v/syscalls.c: New file to provide system call stubs.
3354         * d30v/sys/syscall.h: New file to provide system call numbers.
3355         * d30v/sim-{exit,read,write}.S: Delete, no longer used.
3356         * d30v/Makefile.in: Remove old system stubs, and use the new ones
3357         in syscalls.c.
3358
3359 Tue Nov 18 12:38:37 1997  Michael Meissner  <meissner@cygnus.com>
3360
3361         * d30v/sys/syscall.h: Define for d30v system calls.
3362
3363 Mon Nov 17 22:04:04 1997  Bob Manson  <manson@charmed.cygnus.com>
3364
3365         * configure.in: Configure the sparc directory for the sparc-elf
3366         toolchain.
3367         * configure: Regenerated.
3368
3369         * sparc/Makefile.in: For a generic sparc toolchain, build the cygmon
3370         crt0 and install the cygmon linker script.
3371
3372         * sparc/asm.h (USER_LABEL_PREFIX): If it's already defined, don't
3373         redefine it.
3374
3375         * sparc/configure.in: Add LIB_AC_PROG_CC. Add TARGET_CFLAGS
3376         subst variable.
3377         * sparc/configure: Regenerated.
3378
3379         * sparc/cygmon.ld: New file.
3380         * sparc/cygmon-crt0.S: New file.
3381         * sparc/cygmon-salib.c: New file.
3382
3383 Sun Nov 16 20:22:22 1997  Michael Meissner  <meissner@cygnus.com>
3384
3385         * d30v/crt0.S (_start): Set up stack pointer to end of internal
3386         memory by default.
3387
3388 Tue Nov 11 17:43:06 1997  Michael Meissner  <meissner@cygnus.com>
3389
3390         * d30v/Makefile.in (OBJS): Use print.o, not print.c.  Add sbrk.o.
3391
3392 Mon Nov 10 13:57:40 1997  Michael Meissner  <meissner@cygnus.com>
3393
3394         * configure.in (d30v-*-*): Add configuration.
3395         * configure: Regenerate.
3396
3397         * d30v/{crt0,sim-{read,write,exit}}.S: Correct typos.
3398         * d30v/Makefile.in: Ditto.
3399
3400 Sat Nov  8 14:38:57 1997  Michael Meissner  <meissner@cygnus.com>
3401
3402         * d30v/crt0.S: New file for d30v port.
3403         * d30v/configure{,.in}: Ditto.
3404         * d30v/Makefile.in: Ditto.
3405         * d30v/{in,out}byte.c: Ditto.
3406         * d30v/sim-{read,write,exit}.c: Ditto.
3407
3408 Tue Sep 16 15:21:08 1997  Gavin Koch  <gavin@cygnus.com>
3409
3410         * mips/Makefile.in (vr4300.o): Reinstate command, it's will
3411         be necessary until all hosts properly set BSP in configure.in.
3412
3413 Mon Sep 15 16:20:29 1997  Bob Manson  <manson@charmed.cygnus.com>
3414
3415         * m68k/*.ld: Add underscore versions of __CTOR_LIST__ and
3416         __DTOR_LIST__.
3417
3418 Mon Sep 15 12:13:34 1997  Mark Alexander  <marka@cygnus.com>
3419
3420         * mips/crt0.S: Declare external functions as .text to
3421         eliminate linker warnings.
3422
3423 Tue Sep  9 23:35:04 1997  Gavin Koch  <gavin@cygnus.com>
3424
3425         * mips/Makefile.in (SCRIPTS): Now is configurable.
3426         (BSP): Now is configurable.
3427         (vr4300.o): Remove unnecessary command.
3428         * mips/configure.in: Configure the newly configuable
3429         SCRIPTS and BSP.
3430         * mips/configure: Re-autoconf.
3431
3432
3433 Mon Sep  8 16:53:12 1997  Bob Manson  <manson@charmed.cygnus.com>
3434
3435         * mips/Makefile.in (pmon.o): Added compile command that includes
3436         PART_SPECIFIC_DEFINES. Don't include cma101.o by default.
3437
3438         * mips/configure.in (part_specific_defines): New variable
3439         used when building pmon.o.
3440         (part_specific_obj): Include cma101.o as well as vr4300.o,
3441         since it is board-specific in many ways (and relies on
3442         routines in vr4300.o).
3443
3444 Mon Sep  8 14:42:44 1997  Gavin Koch  <gavin@cygnus.com>
3445
3446         * mips/idt.ld: Add handling of DWARF sections.
3447
3448 Sun Sep  7 16:43:05 1997  Gavin Koch  <gavin@cygnus.com>
3449
3450         * mips/crt0.S, mips/idtmon.S, mips/vr4300.S: Handle mips16 builds.
3451
3452 Thu Sep  4 19:35:12 1997  Andrew Cagney  <cagney@b1.cygnus.com>
3453
3454         * v850/sys/syscall.h: Match with what is in newlib.
3455
3456 Mon Sep  1 12:43:50 1997  Andrew Cagney  <cagney@b1.cygnus.com>
3457
3458         * v850/sys/syscall.h: New file.
3459
3460 Thu Aug 28 17:27:16 1997  Stan Shebs  <shebs@andros.cygnus.com>
3461
3462         * rs6000/ads.ld: Define ram region.
3463         (__stack): Fix value.
3464         * rs6000/crt0.S: Clear the sbss area as well as bss.
3465
3466 Tue Aug 26 16:22:36 1997  Ian Lance Taylor  <ian@cygnus.com>
3467
3468         * m68k/bcc.ld: Don't use BLOCK for the section addresses.
3469         Instead, just force . to be aligned when necessary.
3470         * m68k/idp.ld, m68k/mvme135.ld, m68k/mvme162.ld: Likewise.
3471         * m68k/sbc5204.ld, m68k/sbc5206: Likewise.
3472
3473 Fri Aug  8 14:20:16 1997  Michael Meissner  <meissner@cygnus.com>
3474
3475         * rs6000/Makefile.in (install-{yellowknife,ads}): The linker
3476         scripts are in the source directory, not the object directory.
3477
3478 Fri Aug  1 12:21:31 1997  Stan Shebs  <shebs@andros.cygnus.com>
3479
3480         * rs6000/ads.ld: New file, linker script for 821/860 ADS board.
3481         * rs6000/yellowknife.ld: New file, linker script for embedded
3482         Yellowknife (CHRP/PPCP) box.
3483         * rs6000/Makefile.in: Add rules for ADS and Yellowknife bits,
3484         remove references to EVM, don't optimize the test program.
3485         * rs6000/crt0.S: Renamed from mvme-crt0.S, is generic.
3486         * rs6000/mvme-stack.S: Removed, unnecessary.
3487
3488 Tue Jun  3 12:54:59 1997  Bob Manson  <manson@charmed.cygnus.com>
3489
3490         * mips/crt0.S: Added GCRT0 #ifdef for profiling support.
3491
3492         * mips/Makefile.in (SCRIPTS): Added idtecoff.
3493         (PCRT0): Added.
3494
3495         * mips/idtecoff.ld: Added. Add crt0.o startup entry.
3496
3497 Fri Apr 18 15:54:11 1997  Doug Evans  <dje@canuck.cygnus.com>
3498
3499         * m32r/crt0.S: Remove references to .fillinsn.
3500
3501 Mon Apr 14 16:34:27 1997  Ian Lance Taylor  <ian@cygnus.com>
3502
3503         * testsuite/Makefile.in (INSTALL): Change install.sh to
3504         install-sh.
3505
3506 Wed Apr  9 15:41:39 1997  Mike Meissner  <meissner@cygnus.com>
3507
3508         * rs6000/configure.in (AC_PROG_CC): copied from configure.in.
3509         * rs6000/configure: Regenerate.
3510
3511
3512 Sat Mar 29 12:21:08 1997  Bob Manson  <manson@charmed.cygnus.com>
3513
3514         * sparc/(ex930.ld,ex931.ld,ex934.ld}: Set __end as well
3515         as _end and end.
3516
3517 Fri Mar 28 23:01:38 1997  Mark Alexander  <marka@cygnus.com>
3518
3519         * mips/lsi.ld: Before setting _gp, use ALIGN(8) instead
3520         of ALIGN(16).  Remove ALIGN from _gp computation.
3521
3522 Mon Mar 17 10:00:29 1997  Gavin Koch  <gavin@cygnus.com>
3523
3524         * mips/idtmon.S: Added magic number for _flush_cache slot.
3525
3526 Fri Mar 14 14:36:06 1997  J.T. Conklin  <jtc@beauty.cygnus.com>
3527
3528         * m68k/Makefile.in (install): Fix typo.
3529
3530         * m68k/crt0.S: Changed to use correct loop condition for coldfire.
3531
3532 Wed Mar 12 16:00:51 1997  Stu Grossman  (grossman@critters.cygnus.com)
3533
3534         * sparc/Makefile.in: Add rules for above.
3535         (701_OBJS): Add salib-701.o, sparclet-stub.o.
3536         [Brought over from Nov 5 change in sparclet branch.]
3537
3538         * sparc/salib-701.c (flush_i_cache):  Implement cache flushing to fix
3539         intermittent problems with gdb stub and breakpoints.  Fixes pr 11755.
3540
3541 Wed Mar 12 15:49:30 1997  J.T. Conklin  <jtc@cygnus.com>
3542
3543         * m68k/sbc5204: Fix GROUP specifier.
3544         * m68k/sbc5206: Likewise.
3545
3546 Tue Mar 11 13:43:49 1997  J.T. Conklin  <jtc@cygnus.com>
3547
3548         * m68k/Makefile.in (all): Fix typo.
3549
3550         * m68k/crt0.S: Use cmpl #0,aX instead of cmpw #0,aX as the latter
3551         is an invalid instruction on the coldfire.
3552
3553 Fri Mar  7 19:42:50 1997  Mark Alexander  <marka@cygnus.com>
3554
3555         * mips/lsi.ld: New file.
3556         * mips/lsipmon.S: New file.
3557         * Makefile.in: Add support for LSI variant of PMON (MiniRISC board).
3558         * pmon.S: Ditto.
3559
3560 Fri Mar  7 10:29:11 1997  Ian Lance Taylor  <ian@cygnus.com>
3561
3562         * mips/regs.S (pc): Define.
3563
3564 Thu Mar  6 18:11:57 1997  Bob Manson  <manson@charmed.cygnus.com>
3565
3566        * mips/pmon.S (INDIRECT): For a target that uses the 64-bit
3567         ABI, set up the stack for a 32-bit call before actually calling
3568         PMON.
3569
3570         * mips/regs.S: K1BASE needs to be a 64-bit value on a machine
3571         with 64-bit pointers.
3572
3573         * mips/syscalls.c (sbrk): Use size_t instead of unsigned int
3574         when comparing pointers.
3575
3576 Wed Mar  5 15:44:04 1997  Doug Evans  <dje@seba.cygnus.com>
3577
3578         * m32r/crtsysc.c (_sbrk): Change _end decl to __model__ (__medium__).
3579         * m32r/Makefile.in (m32r-stub.o): Use MULTISRCTOP to find m32r-stub.c.
3580
3581 Tue Mar  4 07:01:44 1997  J.T. Conklin  <jtc@cygnus.com>
3582
3583         * m68k/crt0.S: Use cmpw #0,aX instead of tstl aX, as the latter is
3584         an invalid addressing mode on the 68000 core.
3585
3586 Mon Mar  3 16:38:19 1997  Jim Wilson  <wilson@cygnus.com>
3587
3588         * mips/crt0.S: Subtract 24 instead of 8 when computing sp.
3589
3590 Mon Mar  3 13:35:20 1997  Doug Evans  <dje@canuck.cygnus.com>
3591
3592         * m32r/m32r-lib.c: New file.
3593         * m32r/{eva,eva-stub}.ld: New files.
3594         * m32r/Makefile.in: Build and install them.
3595         Also build and install m32r-stub.o.
3596
3597 Tue Feb 25 11:59:20 1997  Gavin Koch  <gavin@cygnus.com>
3598
3599         * mips/configure.in (LIB_AC_PROG_CC): copied from configure.in.
3600         * mips/configure.in (AC_PROG_CC): replaced by LIB_AC_PROG_CC
3601         can't do final link until libs in this directory are built.
3602         * mips/configure: regenerated.
3603
3604 Tue Feb 25 00:31:27 1997  Ian Lance Taylor  <ian@cygnus.com>
3605
3606         * mips/crt0.S: Call hardware_init_hook and software_init_hook via
3607         a register, to avoid relocation overflow if they are zero.
3608
3609 Mon Feb 24 22:25:49 1997  Gavin Koch  <gavin@cygnus.com>
3610
3611         * mips/Makefile.in (IDTOBJS,PMONOBJS): Part specific modules
3612         can now be configured by part_specific_obj.
3613         * mips/configure.in (part_specific_obj): added.
3614         * mips/configure: regenerate.
3615
3616 Fri Feb 21 14:29:54 1997  Doug Evans  <dje@canuck.cygnus.com>
3617
3618         * m32r/crtsysc.c (_sbrk): Declare _end with __attribute ((__sym32__)).
3619
3620 Fri Feb 21 10:10:55 1997  Jim Wilson  <wilson@cygnus.com>
3621
3622         * mips/ddb.ld: Align the location counter before setting _gp, and
3623         before setting edata.  Remove ALIGN from _gp computation.
3624         * mips/idt.ld, mips/pmon.ld: Before setting _gp, use ALIGN(8) instead
3625         of ALIGN(16).  Remove ALIGN from _gp computation.
3626
3627 Thu Feb 20 17:30:41 1997  Ian Lance Taylor  <ian@cygnus.com>
3628
3629         * mips/array.ld: Add mips16 sections.
3630         * mips/ddb.ld, mips/idt.ld, mips/pmon.ld: Likewise.
3631
3632         * mips/crt0.S (zerobss): Use subu, not sub.
3633
3634 Tue Feb 18 17:25:56 1997  Mark Alexander  <marka@cygnus.com>
3635
3636         * mips/crt0.S: Add .ent lines for all code fragments, so
3637         that objdump --disassemble will display them correctly.
3638
3639 Fri Feb 14 11:07:20 1997  J.T. Conklin  <jtc@cygnus.com>
3640
3641         * m68k/mvme-stub.c: New file.  Common debugger stub used for mvme-
3642         based targets.  This should eventually be merged with or replaced
3643         by the m68k stub from gdb.
3644         * m68k/{mvme135-stub.c, mvme162lx-stub.c}: Removed.
3645         * m68k/Makefile.in: Updated for above change.
3646
3647         * m68k/{mvme135-asm.S, mvme162lx-asm.S}: Removed all whitespace
3648         differences and changed to consistantly use the IMM macro for
3649         immediate constants.  It is now possible to compare these two
3650         files without having to filter out insignificant differences.
3651
3652         * m68k/mvme135-stub.c (set_debug_traps): Renamed from
3653         init_debug_traps to match documentation and other sample debugger
3654         stubs.
3655
3656         * m68k/sbc5204.ld: New file, linker script for Arnewsh SBC5204.
3657
3658         * m68k/sbc5206.ld: New file, linker script for Arnewsh SBC5206.
3659
3660         * m68k/Makefile.in (DBUG_OBJ, DBUG_BSP): New BSP for coldfire
3661         targets running the dbug monitor.
3662
3663         * m68k/{dbug-exit.S,dbug-inbyte.S,dbug-outbyte.S}: New files.
3664
3665 Thu Feb  6 13:31:06 1997  Bob Manson  <manson@charmed.cygnus.com>
3666
3667         * m68k/crt0.S: Don't use SYM to refer to symbols defined
3668         in the linker script.
3669
3670 Thu Jan 16 10:34:36 1997  Jim Wilson  <wilson@cygnus.com>
3671
3672         * mips/{ddb.ld,idt.ld,pmon.ld}: Readd OUTPUT_FORMAT definition.
3673
3674 Wed Jan  8 14:49:26 1997  Jim Wilson  <wilson@cygnus.com>
3675
3676         * mips/crt0.S (_start): Don't try to use FPU registers if
3677         __mips_soft_float is defined.
3678
3679 Fri Dec 27 15:41:08 1996  Bob Manson  <manson@charmed.cygnus.com>
3680
3681         * sparc/Makefile.in (splet-install): Add tsc701.ld.
3682
3683 Thu Dec 26 14:59:34 1996  Michael Snyder  <msnyder@cleaver.cygnus.com>
3684
3685         * sparc/sparclet-stub.c: Add support for "P" protocol command.
3686           Add support for %cc coprocessor registers, %asr registers.
3687           Work-around broken SAVE instruction on sparclet.
3688
3689 Tue Dec 24 22:15:53 1996  Angela Marie Thomas (angela@cygnus.com)
3690
3691         * mips/pmon.S: add an INDIRECT for _flush_cache to be the
3692         same as mon_flush_cache.  This fixes failures in "make check"
3693
3694 Mon Dec 23 18:08:05 1996  Jim Wilson  <wilson@cygnus.com>
3695
3696         * mips/syscalls.c (__errno, _raise): Delete.
3697
3698 Wed Dec 18 17:29:28 1996  Ian Lance Taylor  <ian@cygnus.com>
3699
3700         * mips/idt.ld: Align the location counter before setting _gp, and
3701         before setting edata.
3702         * mips/pmon.ld: Likewise.
3703
3704 Sat Dec 14 21:52:40 1996  Ian Lance Taylor  <ian@cygnus.com>
3705
3706         * configure.in: Use a special version of AC_PROG_CC.  Autoconf
3707         2.12 introduced a check for whether the compiler works, and that
3708         check will fail for a cross compilers without a complete set of
3709         libraries.
3710
3711 Fri Dec 13 10:40:14 1996  Rob Savoye  <rob@chinadoll.cygnus.com>
3712
3713         * sbrk.c: Set the heap pointer to the address of _end, not the
3714         value.
3715
3716 Wed Dec 11 15:26:50 1996  Jim Wilson  <wilson@cygnus.com>
3717
3718         * mips/{ddb.ld,idt.ld,pmon.ld}: Delete OUTPUT_FORMAT definition.
3719
3720 Fri Dec  6 15:52:36 1996  Jim Wilson  <wilson@cygnus.com>
3721
3722         * mips/crt0.S: Delete unreachable instruction after exit call.
3723         Move exit call before .end _start.
3724
3725 Tue Nov 26 15:05:26 1996  Doug Evans  <dje@rtl.cygnus.com>
3726
3727         * configure: Regenerate with autoconf 2.12.
3728
3729 Mon Nov 11 15:12:08 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
3730
3731         * config/ppc.mh: New PowerPC eabi target specific config file.
3732         Always use -mrelocatable-lib -mno-eabi.
3733
3734         * rs6000/configure.in (host_makefile_frag): Use config/ppc.mh.
3735         * rs6000/configure: Regenerate.
3736
3737         * rs6000/{mvme,sim}-crt0.o (_start): Make initial stack frame 64
3738         bytes, not 56 so that it is aligned to a 16 byte boundary.
3739
3740 Tue Nov  5 10:24:29 1996  Doug Evans  <dje@canuck.cygnus.com>
3741
3742         * sparc/Makefile.in (crt0-701.o): Use default rule to build.
3743         * sparc/crt0-701.S: Second pass at little endian support.
3744
3745 Tue Nov  5 10:08:40 1996  Dawn Perchik <dawn@critters.cygnus.com>
3746
3747         * sparc/{salib-701.c,sparclet-stub.c,tsc701.ld}: New files.
3748         * sparc/Makefile.in: Add rules for above.
3749         (701_OBJS): Add salib-701.o, sparclet-stub.o.
3750
3751 Fri Nov  1 21:50:12 1996  Angela Marie Thomas (angela@cygnus.com)
3752
3753         * mips/ddb.ld: rename cairo.ld to ddb.ld
3754         * mips/Makefile.in: rename cairo to ddb
3755
3756 Thu Oct 31 13:54:58 1996  Stan Shebs  <shebs@andros.cygnus.com>
3757
3758         * sh/sh1lcevb.ld, sh/sh2lcevb.ld, sh/sh3lcevb.ld: New files,
3759         linker scripts for Hitachi eval boards.
3760
3761 Thu Oct 31 12:39:53 1996  Doug Evans  <dje@seba.cygnus.com>
3762
3763         * m32r/crt0.S: Set up fp.  Speed up zeroing of bss.
3764
3765 Sun Oct 27 20:34:27 1996  Mark Alexander  <marka@cygnus.com>
3766
3767         * mips/crt0.S: Initialize gp register correctly.
3768
3769 Tue Oct 22 12:02:19 1996  Doug Evans  <dje@canuck.cygnus.com>
3770
3771         * m32r/sys/syscall.h: New file.
3772         * m32r/crt0.S: Rewrite.
3773         * m32r/crtsysc.c (__trap): Adjust literal and comment syntax.
3774
3775 Thu Oct 17 13:47:54 1996  Doug Evans  <dje@canuck.cygnus.com>
3776
3777         * m32r/syscalls.c: Deleted, renamed to
3778         * m32r/crtsysc.c: this.
3779         * m32r/Makefile.in: Updated.
3780
3781 Mon Sep 30 11:42:08 1996  Doug Evans  <dje@canuck.cygnus.com>
3782
3783         * m32r/{Makefile.in,configure.in,configure}: New files.
3784         * m32r/{crt0.S,syscalls.c,trap.S}: New files.
3785         * configure.in: Recognize m32r-*-*.
3786         * configure: Regenerated.
3787
3788 Thu Sep 26 10:59:25 1996  James G. Smith  <jsmith@cygnus.co.uk>
3789
3790         * mips/crt0.S (_exit): Update terminating break instruction to use
3791         an explicit high value.
3792
3793 Mon Sep 23 19:02:32 1996  Stan Shebs  <shebs@andros.cygnus.com>
3794
3795         * sh: New directory, Hitachi SH libgloss support.
3796         * sh/sh3bb.ld: New file, SH3 big box linker script.
3797
3798 Thu Sep 19 12:02:23 1996  Ian Lance Taylor  <ian@cygnus.com>
3799
3800         * mips/crt0.S (zerobss): Use bltu in zerobss loop, not bne, in
3801         case the end symbol is not aligned.
3802
3803 Sun Sep 15 12:23:47 1996  James G. Smith  <jsmith@cygnus.co.uk>
3804
3805         * mips/vr4300.S (__cpu_flush): Fix lui constant.
3806         * mips/crt0.S (init): Fix passing of arg0 through exit() and
3807         _exit().
3808         * mips/syscalls.c (__errno): Return address of errno, rather than
3809         NULL.
3810
3811 Wed Sep 11 10:45:13 1996  Stu Grossman  (grossman@critters.cygnus.com)
3812
3813         * m68k/bcc.ls, m68k/idp.ld, m68k/mvme135.ld, m68k/mvme162.ld:
3814         Merge .init and .fini sections into .text to fix a.out.
3815
3816 Sun Sep  8 09:50:08 1996  Stu Grossman  (grossman@critters.cygnus.com)
3817
3818         * m68k/bcc.ls, m68k/idp.ld, m68k/mvme135.ld, m68k/mvme162.ld:
3819         Many fixes for problems discovered during testing.  Make stack end
3820         at end of ram.  Force __CTOR_LIST__ and __DTOR_LIST__ to be
3821         longword aligned.  Move .shdata out of .text section.  Put .rodata
3822         and .gcc_except_table into .text section.  Get rid of .shbss
3823         section, load it into .bss.  Remove bogus start address
3824         calculation for .bss.  Force all sections to be longword aligned.
3825         Create .init and .fini sections (including function prologues and
3826         epilogues) for ELF support.
3827         * cpu32bug.S cpu32bug.h:  Move defs for cpu32bug monitor into
3828         cpu32bug.h.  Make sure that cpu32bug function codes aren't global.
3829         Remove creation of vbr_table.  Fix function prologue in _exit.
3830         Use fp instead of a6.  Add .text pseudo-op to the beginning of
3831         each function.
3832         * crt0.S:  Remove global symbols zeroboss, init and launch.  Make
3833         main, exit, hardware_init_hook, software_init_hook, atexit and
3834         __do_global_dtors extern, not global.  Fix logic error when
3835         initializing stack pointer.  It now loads sp if __stack is non-
3836         zero.  Reverse order of software and hardware init hooks.
3837         Hardware now comes first.  Add call to __INIT_SECTION__, and
3838         register __FINI_SECTION__ with atexit.  This is needed to make ELF
3839         static constructors and destructors work right.
3840
3841 Tue Sep  3 11:55:01 1996  Ian Lance Taylor  <ian@cygnus.com>
3842
3843         * m68k/bcc.ld: Set address of .stab and .stabstr to 0, not `.'.
3844         * m68k/idp.ld, m68k/mvme135.ld, m68k/mvme162.ld: Likewise.
3845         * hp74x/hppa.c, rs6000/evm.ld, sparc/ex930.ld: Likewise.
3846         * sparc/ex931.ld, sparc/ex934.ld, sparc/sim.ld: Likewise.
3847
3848 Fri Aug 30 15:57:37 1996  James G. Smith  <jsmith@cygnus.co.uk>
3849
3850         * mips/Makefile.in (SCRIPTS): Add cairo.
3851         (vr4300.o:): Force build with target CFLAGS to ensure correct
3852         multilib endianness. The -Tcairo.ld target uses libpmon.a aswell
3853         as the -Tpmon.ld target.
3854         * mips/{idt.ld,pmon.ld}: Remove explicit crt0.o include.
3855         * mips/cairo.ld: Added.
3856         * mips/crt0.S: Restore atexit() call. Fix startup stack
3857         initialisation.
3858         * mips/pmon.S: Fix monitor indirection to be 64bit clean.
3859         * mips/vr4300.s: Added simple bus error handler to cope with
3860         sizing memory that doesn't ghost, but does abort.
3861         * mips/cma101.c: Improve the memory sizer.
3862         * mips/regs.S: Add definitions for SR_KX, SR_SX and SR_UX.
3863
3864 Thu Aug 29 17:07:45 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
3865
3866         * a29k/configure.in (i[345]86-*-*): Recognize i686 for pentium
3867         pro.
3868         * testsuite/libgloss.all/configure.in (i[345]86-*-*): Ditto.
3869         * a29k/configure: Regenerate.
3870
3871 Thu Aug 22 10:31:38 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
3872
3873         * rs6000/Makefile.in (install{,-linux,-solaris}): Add install of
3874         Linux, Solaris libraries if built.
3875
3876 Fri Aug 16 10:12:48 1996  Rob Savoye  <rob@chinadoll.cygnus.com>
3877
3878         * m68k/Makefile.in: Add -nostdlib to the test targets.
3879         * m68k/{idp,bcc,mvme135,mvme162}.ld: Move the CTORS and DTORS from
3880         .data to .text where they really belong.
3881         * m68k/crt0.S(launch): Don't put __do_global_dtors into atexit,
3882         GCC is supposed to do this in __main.
3883
3884 Mon Aug  5 15:04:34 1996  Doug Evans  <dje@canuck.cygnus.com>
3885
3886         * sparc/libsys/isatty.c: New file.
3887
3888 Sun Aug  4 22:32:14 1996  Rob Savoye  <rob@chinadoll.cygnus.com>
3889
3890         * pa/Makefile.in: Build the test case as seperate targets.
3891         * pa/{w89k,op50n}.ld: Use GROUP rather than INPUT to get all the
3892         libraries.
3893
3894 Fri Aug  2 18:25:07 1996  J.T. Conklin  <jtc@rtl.cygnus.com>
3895
3896         * m68k/Makefile.in: Install common crt0.o, remove old references
3897         to per-bsp crt0's.
3898
3899 Tue Jul 30 21:48:05 1996  Rob Savoye  <rob@chinadoll.cygnus.com>
3900
3901         * sparc/Makefile.in: Built crt0.S, not crto.s.
3902         * sparc/crt0.S: Don't use REGS macro, use % always.
3903         * sparc/salib.c: Add a prototype for putDebugChar.
3904
3905 Tue Jul 23 15:12:42 1996  Doug Evans  <dje@canuck.cygnus.com>
3906
3907         * sparc/{sysc-701.c,crt0-701.S}: New files.
3908         * sparc/Makefile.in (all): Build them.
3909         ($(701_BSP),crt0-701.o): New targets.
3910         ($(CRT0),$(SIM_CRT0),dtor.o): Don't use $<, for sunos make.
3911         (all): Depend on $($(CPU)_ALL).
3912         (install): Use $(INSTALL_DATA), not $(INSTALL_PROGRAM).
3913         Depend on $($(CPU)_INSTALL).
3914         * sparc/configure.in (libgloss_topdir): Delete unnecessary $(srcdir).
3915         (AC_CONFIG_AUX_DIR): Call.
3916         (CPU): Define.
3917         * sparc/configure: Regenerated.
3918
3919 Mon Jul 22 14:32:39 1996  Doug Evans  <dje@canuck.cygnus.com>
3920
3921         * config/{default.mt,mips.mt}: Don't use $<, for sunos make.
3922
3923 Mon Jul 22 15:54:02 1996  Ian Lance Taylor  <ian@cygnus.com>
3924
3925         * m68k/crt0.S (zerobss): Don't use dbra if __mcf5200__.
3926
3927 Sun Jul 14 16:47:14 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
3928
3929         * lseek.c (lseek): Don't use SET_ERRNO.
3930         * open.c (open): Ditto.
3931
3932 Wed Jul  3 18:19:10 1996  Stu Grossman  (grossman@critters.cygnus.com)
3933
3934         * sparc/Makefile.in:  Install ex930/931/934.ld files.
3935         * sparc/configure, sparc/configure.in:  Use AC_CANONICAL_SYSTEM to
3936         define target_alias to make install work from this directory.
3937
3938 Wed Jul  3 18:04:49 1996  Ian Lance Taylor  <ian@cygnus.com>
3939
3940         * Makefile.in: Make sure we always have an argument to for.  Make
3941         sure rootpre and srcrootpre are always set before using
3942         FLAGS_TO_PASS.
3943
3944 Tue Jul  2 18:04:31 1996  J.T. Conklin  <jtc@hippo.cygnus.com>
3945
3946         * glue.h (SET_ERRNO): Removed.
3947         * sbrk.c, stat.c, unlink.c: Don't use SET_ERRNO.
3948
3949 Mon Jul  1 14:24:51 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
3950
3951         * rs6000/Makefile.in: Add $(srcdir)/.. dependencies for all files
3952         in the toplevel.
3953
3954 Sat Jun 29 23:26:39 1996  James G. Smith  <jsmith@cygnus.co.uk>
3955
3956         * mips/cma101.c (DOSYNC): Explicitly select -mips2 for the
3957         assembly of the "sync" instruction.
3958         * mips/Makefile.in: Removed special cma101.o build. Seperate
3959         install.sh invocations for the BSP libraries.
3960
3961 Sat Jun 29 08:17:52 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
3962
3963         * doc/porting.texi (GNU remote protocol): Fix bad texinfo.
3964
3965 Fri Jun 28 23:16:37 1996  Rob Savoye  <rob@chinadoll>
3966
3967         * sparc/traps.S: Don't use REGS macro, use % always.
3968         * sparc/Makefile.in: Add -nostdlib when building the test cases,
3969         as gcc keeps thinks it wants two crt0.o.
3970         * sparc/asm.h: Don't define the REGS macro, we'll use explicit
3971         register prefixes. Always define USER_LABEL_PREFIX cause gcc is
3972         broken, and I doubt it'll get fixed.
3973
3974 Sat Jun 29 05:05:15 1996  James G. Smith  <jsmith@cygnus.co.uk>
3975
3976         * mips/crt0.S (zerobss): Fix the stack-pointer calculation.
3977
3978 Thu Jun 27 17:23:33 1996  Ian Lance Taylor  <ian@cygnus.com>
3979
3980         * mips/Makefile.in (vr4300.o): Pass -mips3 after $(ASFLAGS).
3981         (cma101.o): Pass -mips2 after $(CFLAGS).
3982
3983 Tue Jun 25 22:48:15 1996  Jason Molenda  (crash@godzilla.cygnus.co.jp)
3984
3985         * Makefile.in (bindir, libdir): Use autoconf-set values.
3986         * configure: Rebuilt.
3987
3988         * doc/Makefile.in (mandir, infodir): Use autoconf-set values.
3989         * doc/configure.in (AC_PREREQ): autoconf 2.5 or higher.
3990         * doc/configure: Rebuilt.
3991
3992         * {a29k,hp74x,i960,m68k,mips,pa,rs6000,sparc,sparc/libsys}/Makefile.in
3993         (bindir, libdir): Use autoconf-set values.
3994         * {a29k,hp74x,i960,m68k,mips,pa,rs6000,sparc,sparc/libsys}/configure.in
3995         (AC_PREREQ): autoconf 2.5 or higher.
3996         * {a29k,hp74x,i960,m68k,mips,pa,rs6000,sparc,sparc/libsys}/configure:
3997         Rebuilt.
3998
3999 Mon Jun 24 22:01:11 1996  Rob Savoye  <rob@chinadoll.cygnus.com>
4000
4001         * sparc/crt0.S: Set the stack to the upper part of memory. Execute
4002         hardware_init_hook and software_init_hook if they exist with a
4003         legit address. Drop into exit after main. Zero the bss section.
4004         * sparc/ex930.ld:  PROVIDE hardware_init_hook and
4005         software_init_hook.
4006
4007 Mon Jun 24 19:44:45 1996  Ian Lance Taylor  <ian@cygnus.com>
4008
4009         * mips/Makefile.in (cma101.o): Use -mips2 option when compiling.
4010
4011 Wed Jun 19 13:57:36 1996  Rob Savoye  <rob@darkstar.cygnus.com>
4012
4013         * debug.[ch]: New files for GDB stub support.
4014         * config/default.mt: Add rules for debug.o.
4015         * config/default.mh: Add rule for building C++ source. Add $srcdir
4016         to INCLUDES so shared header files can be found.
4017
4018         * sparc/salib.c(exceptionHandler): Range check the vector number
4019         so we get a legit %tbr value. Add wrappers so inbyte and outbyte
4020         work.
4021         * sparc/crt0.s: Handle cpus that don't have FP support.
4022         * sparc/Makefile.in: Add multilib support. Add variable for
4023         objcopy and objdump. Build the BSPs as archive libraries, not
4024         object files. Add support for the SIS sparc simulator. Build the
4025         test case srecords and dissasembly as seperate makefile
4026         targets. Also optionally build the C++ test case. Use a target
4027         makefile fragment.
4028         * sparc/configure.in: Add multilib support.
4029         * sparc/configure: Regenerated.
4030         * sparc/asm.h: Macros to deal with aout and coff formats portably.
4031         * sparc/slite.h: Sparclite specific stuff.
4032         * sparc/{sim-crt0.S,sim-stub.c,sim-io.c,sim.ld}: New support for
4033         the SIS sparc simulator.
4034         * sparc/traps.S: Generic trap handlers for SIS and ex93x targets.
4035         * sparc/tests.c: Test case for linking and GDB protocol.
4036
4037 Tue Jun 18 20:06:16 1996  Rob Savoye  <rob@chinadoll.cygnus.com>
4038
4039         * pa/Makefile.in: Build the test case srecords and dissasembly
4040         as seperate makefile targets. Also optionally build the C++ test
4041         case.
4042         * pa/crt0.S: If __stack and __globals have a legit address, use
4043         that for %sp and %gp. Execute hardware_init_hook and
4044         software_init_hook if they exist with a legit address. Add
4045         __do_global_dtors() to the atexit array.
4046         * pa/{w89k,op50n}.ld: Use GROUP rather than INPUT to get the
4047         libraries. Allocate the stack and global spaces from the top of
4048         memory. PROVIDE hardware_init_hook and software_init_hook.
4049
4050         * m68k/Makefile.in: Build the test case srecords and dissasembly
4051         as seperate makefile targets. Also optionally build the C++ test
4052         case.
4053         * m68k/asm.h: Don't define __USER_LABEL_PREFIX__ and
4054         __REGISTER_PREFIX__ ourselves since suprisingly gcc sets them
4055         correctly for a change.
4056         * m68k/{bcc,mvme135,mvme162,idp}.ld: Use the same crt0 rather than
4057         building seperate ones. PROVIDE hardware_init_hook and
4058         software_init_hook. Stick the Constructors and Destructors in
4059         .data cause they don't work in .text (which is where they should
4060         really be).
4061         * m68k/cpu32bug: Add a few more traps to support the older ABug
4062         monitor.
4063         * m68k/crt0.S: If __stack is isn't set, set the stack to the top
4064         of memory. Excecute hardware_init_hook and software_init_hook if
4065         they exist with a legit address. Add __do_global_dtors() to the
4066         atexit array.
4067
4068         * rs6000/Makefile.in: Use the linker script to build the test
4069         case. Also build a C++ test case.
4070         * rs6000/dtor.C: Test contructors and destructors.
4071         * rs6000/{sim,mvme}.ld: New linkers scripts for the simulator and
4072         the mvme board.
4073         * rs6000/evm.ld: Provide hardware_init_hook and software_init_hook
4074         so we can test for them in the crt0.S.
4075         * rs6000/crto.S: Excecute hardware_init_hook and
4076         software_init_hook if they exist with a legit address.
4077
4078 Mon Jun 17 18:39:17 1996  Rob Savoye  <rob@chinadoll.cygnus.com>
4079
4080         * mips/Makefile.in: Replace the "test" target with seperate
4081         targets for the dissasembled file, and the srecord.
4082         * mips/configure.in: Use a target makefile fragment.
4083         * mips/configure: Regenerate.
4084         * mips/idt.ld: Add a comment on producing srecords. Setup a space
4085         for the stack. PROVIDE hardware_init_hook and software_init_hook.
4086         * mips/crt0.S: Make a small stack. Run memsize() using the temp
4087         stack, and then set the stack to the top of memory. Also grab some
4088         space for the globals. Add __do_global_dtors() to the atexit
4089         array. Call _exit from newlib so the atexit array gets run, then
4090         exits.
4091
4092 Thu Jun 13 15:44:46 1996  Ian Lance Taylor  <ian@cygnus.com>
4093
4094         * mips/Makefile.in (vr4300.o): Use -mips3 option when assembling.
4095
4096 Sat Jun  1 16:27:53 1996  Michael Meissner  <meissner@wogglebug.tiac.net>
4097
4098         * rs6000/simulator.S (open, close, lseek): Add system calls.
4099         * rs6000/Makefile.in (OBJS): Don't put open.o, close.o, lseek.o
4100         here.
4101         (SIM_OBJS): Put them here instead.
4102
4103 Tue Apr 30 20:01:08 1996  Rob Savoye  <rob@chinadoll.cygnus.com>
4104
4105         * m68k/crt0.S: Don't allocate __stack in the .bss section.
4106         * m68k/{idp,mvme135,mvme162,bcc}.ld: Set __stack to a word below
4107         the top of memory. Use "-l" in GROUP rather than the full name so
4108         it'll get found using the path lookup in LD. Also link in libgcc
4109         too. Don't set __lstack anymore.
4110         * m68k/Makefile.in: Build test as a series of Makefile targets,
4111         rather than as a big loop.
4112
4113 Thu Apr 25 08:38:15 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
4114
4115         * rs6000/mvme-stack.S: New file, define __stack.
4116         * rs6000/mvme-crt0.S (_start): If __stack is not 0, use that for
4117         the stack address.
4118
4119 Thu Apr 25 06:42:02 1996  Rob Savoye <rob@chinadoll.cygnus.com>
4120
4121         * rs6000/Makefile.in: Add support for multilib.
4122         * rs6000/configure.in: Ditto.
4123         * rs6000/configure: Regenerate.
4124
4125 Wed Apr 24 11:02:33 1996  Doug Evans  <dje@blues.cygnus.com>
4126
4127         * sparc/libsys/Makefile.in (isatty.o): Add rule for SunOS VPATH.
4128
4129 Fri Apr 19 13:23:31 1996  Rob Savoye  <rob@chinadoll.cygnus.com>
4130
4131         * {mips,a29k,pa}/configure.in: Add support for multilibs
4132         by using config-ml.in.
4133         * {mips,a29k,pa}/configure: Regenerate.
4134         * {mips,a29k,pa}/Makefile.in: Build archive libraries,
4135         not objects for the BSPs.
4136
4137 Fri Apr 19 12:33:25 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
4138
4139         * rs6000/sol-crt0.c: Delete, file moved into gcc directory.
4140
4141 Mon Apr 15 14:09:26 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
4142
4143         * rs6000/simulator.S: Call _cerror to save errno if an error
4144         occurred.
4145         * rs6000/sim-errno.c (_cerrno): New function to set errno.
4146
4147 Thu Apr 11 14:19:01 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
4148
4149         * rs6000/sol-{crt0.c,syscall.S,cfuncs.c}: New files to support
4150         libgloss on PowerPC Solaris.
4151
4152         * rs6000/Makefile.in: Add Solaris support.
4153
4154 Tue Apr 16 17:43:06 1996  Rob Savoye  <rob@chinadoll.cygnus.com>
4155
4156         * Makefile.in: Don't do anything if SUBDIRS is empty.
4157
4158 Mon Apr 15 15:37:52 1996  Rob Savoye  <rob@chinadoll.cygnus.com>
4159
4160         * configure.in, m68k/configure.in: Add support for multilibs by
4161         using config-ml.in.
4162         * m68k/crt0.S: If a value for __stack hasn't been specified,
4163         initialize %sp to some memory in .bss.
4164         * m68k/Makefile.in: Build archive libraries, not objects for the
4165         BSPs. Build multiple copies of the crt0.o, one for each target. Add
4166         support to build multilibs.
4167         * idp.ld, bcc.ld, mvme135.ld, mvme162.ld: Use GROUP to look for
4168         libc.a and the BSP rather than INPUT an object. Get the right
4169         crt0.o.
4170
4171 Tue Apr  9 23:31:53 1996  Ian Lance Taylor  <ian@cygnus.com>
4172
4173         * m68k/cpu32bug.S (getDebugChar): Use extw/extl rather than
4174         extbl, so it can be used on a 68000.
4175
4176 Wed Mar 27 17:18:01 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
4177
4178         * rs6000/{mvme-exit,simulator}.S (_exit): Loop on a trap
4179         instruction following the _exit system call.  This also makes sure
4180         that the debugger reports the address as being in _exit, rather
4181         than whatever function follows _exit.
4182
4183 Fri Mar 15 12:30:02 1996  J.T. Conklin  <jtc@rtl.cygnus.com>
4184
4185         * i960/{Makefile.in,asm.h,configure,configure.in,mon-read.c,
4186         mon-syscalls.S,mon-write.c}: Initial support for MON960.
4187         * configure.in: Add support for i960.
4188         * configure: Rebuild with autoconf 2.8.
4189
4190 Fri Mar  8 18:12:52 1996  Ian Lance Taylor  <ian@cygnus.com>
4191
4192         * a29k/configure.in: Call AC_CONFIG_AUX_DIR.
4193         * a29k/configure: Rebuild with autoconf 2.7.
4194         * m68k/configure.in: Call AC_CONFIG_AUX_DIR before
4195         AC_CANONICAL_SYSTEM.
4196         * mips/configure.in, pa/configure.in: Likewise.
4197         * rs6000/configure.in: Likewise.
4198         * m68k/configure, mips/configure, pa/configure: Rebuild.
4199         * rs6000/configure: Rebuild.
4200
4201 Fri Mar  8 08:11:14 1996  Doug Evans  <dje@charmed.cygnus.com>
4202
4203         * sparc/libsys/sbrk.S (curbrk): Moved from here,
4204         * sparc/libsys/cerror.S (curbrk): To here.
4205
4206 Thu Mar  7 11:39:09 1996  James G. Smith  <jsmith@cygnus.co.uk>
4207
4208         * mips/crt0.S (bssloop): Updated comment to reflect the source.
4209
4210 Wed Mar  6 18:12:25 1996  Doug Evans  <dje@charmed.cygnus.com>
4211
4212         * configure.in (sparclet-*-aout*): Add entry.
4213         * configure: Regenerated.
4214         * sparc/libsys/{Makefile.in,configure.in,configure,isatty.c,
4215         libsys-crt0.S,sbrk.S,syscall.h,syscallasm.h,template.S,template_r.S}:
4216         New files.
4217
4218 Fri Feb 23 22:21:07 1996  Rob Savoye  <rob@chinadoll.cygnus.com>
4219
4220         * a29k: New dir for a29k-coff support for the AMSAT Phase-3D
4221         satellite. (doesn't use udi)
4222         * a29k/{29200-io.c,Makefile.in,configure,configure.in,README,crt0.s,
4223         p3dgps.ld,sa29200.ld,sa29200b.ld,test.c: New files for a29k
4224         support.
4225         * a29k/sys/{cpudef.h,intrinsi.h,macros.h,romdcl.h,sysmac.h,
4226         fpsymbol.h,libconfig.h,proreg.h,smartmac.h}: New files for a29k
4227         support.
4228         * configure.in: Add support for a29k.
4229         * configure: Rebuild.
4230
4231 Thu Feb 22 13:32:28 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
4232
4233         * rs6000/mvme-read.c (read): New file, if large read, do a .INLN
4234         system call, instead of sucessive .INCHR system calls.  Map \r on
4235         input to \n.
4236
4237         * rs6000/mvme-inbyte.S: Add stub for new input system calls.
4238
4239         * rs6000/Makefile.in (MVME_OBJS): Add mvme-read.o, delete read.o
4240
4241 Wed Feb 21 16:45:19 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
4242
4243         * rs6000/mvme-print.c: New file, map write into sequences of
4244         .OUTLN/.OUTCHR/.PCRLF rather than just using .OUTCHR.
4245
4246         * rs6000/mvme-outbyte.S: Add stubs for new output system calls.
4247
4248         * rs6000/Makefile.in (MVME_OBJS): Add mvme-print.o, delete print.o
4249         and write.o.
4250
4251 Thu Feb 15 11:37:02 1996  James G. Smith  <jsmith@cygnus.co.uk>
4252
4253         * mips/{mipsidt,mipspmon}.ld: Added OUTPUT_ARCH definition.
4254         * mips/cma101.c (time): Added time() function.
4255
4256 Tue Feb 13 10:36:07 1996  James G. Smith  <jsmith@cygnus.co.uk>
4257
4258         * mips/vr4300.S (__cpu_flush): Fix loop counter.
4259
4260 Tue Jan 30 15:41:19 1996  James G. Smith  <jsmith@cygnus.co.uk>
4261
4262         * mips/syscalls.c: Used include file, rather than local manifest
4263         definitions.
4264         * mips/crt0.S: Removed IDT monitor entry points.
4265         * mips/Makefile.in: Construct mipsidt and mipspmon BSP files.
4266         * mips/{cma101.c,idtmon.S,pmon.S,regs.S,vr4300.S}: Added.
4267         * mips/{mipspmon.ld}: Added.
4268
4269 Sun Jan 28 08:01:31 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
4270
4271         * rs6000/configure.in (AC_INIT): Use sim-crt0.S, not crt0.s.
4272         * rs6000/configure: Regenerate.
4273
4274 Wed Jan 24 14:26:01 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
4275
4276         * rs6000/{mvme,sim}-crt0.S (__atexit): Put the __atexit variable
4277         in the .sdata section, and provide a fixup for the address, in
4278         order to support the new -msdata compiler flag.
4279
4280 Thu Jan 11 11:24:25 1996  Michael Meissner  <meissner@tiktok.cygnus.com>
4281
4282         * rs6000/{mvme,sim}-crt0.S (__atexit): Provide address of atexit,
4283         so eabi-ctors in libgcc.a can know to register the function to
4284         call all of the destructors.
4285
4286 Sat Dec 30 14:31:37 1995  Doug Evans  <dje@canuck.cygnus.com>
4287
4288         * configure.in (AC_CONFIG_AUX_DIR): Adjust to new build tree layout.
4289         * {doc,hp74x,m68k,mips,pa,rs6000,sparc}/configure.in
4290         (AC_CONFIG_AUX_DIR): Define
4291         * {,doc,hp74x,m68k,mips,pa,rs6000,sparc}/configure: Regenerated.
4292
4293 Mon Dec 11 12:20:24 1995  Ian Lance Taylor  <ian@cygnus.com>
4294
4295         * Makefile.in (FLAGS_TO_PASS): Add INSTALL, INSTALL_PROGRAM,
4296         and INSTALL_DATA.
4297
4298 Fri Dec  1 16:54:15 1995  James G. Smith  <jsmith@cygnus.co.uk>
4299
4300         * mips/syscalls.c (sbrk): Fixed memory addressing. System call
4301         returns size, not (last address + 1).
4302
4303 Thu Nov 16 13:47:57 1995  Ian Lance Taylor  <ian@cygnus.com>
4304
4305         * config/default.mh: Don't define CC_FOR_TARGET, AS_FOR_TARGET,
4306         AR_FOR_TARGET, LD_FOR_TARGET, RANLIB_FOR_TARGET, NM_FOR_TARGET,
4307         OBJDUMP_FOR_TARGET, or OBJCOPY_FOR_TARGET.  Change the build rules
4308         to use CC, etc., instead of CC_FOR_TARGET, etc.
4309         * configure.in, */configure.in: Get values for CC, AS, AR, LD, and
4310         RANLIB.  Always use default.mh.
4311         * Makefile.in (FLAGS_TO_PASS): Pass down LD.
4312         * Makefile.in, */Makefile.in: Let CC, AS, AR, LD, and RANLIB by
4313         substituted by the autoconf configure script.  Use them instead of
4314         the *_FOR_TARGET variants.
4315         * hp74x/configure.in: Don't call AC_CANONICAL_SYSTEM.
4316         * m68k/configure.in: Call AC_ARG_PROGRAM.
4317         * mips/configure.in, pa/configure.in: Likewise.
4318         * rs6000/configure.in: Likewise.
4319         * m68k/Makefile.in: Set program_transform_name, OBJDUMP, and
4320         OBJCOPY.
4321         * mips/Makefile.in, pa/Makefile.in, rs6000/Makefile.in: Likewise.
4322         * mips/Makefile.in: Split new test target from all target.
4323         * configure, */configure: Rebuild.
4324
4325 Tue Nov 14 12:04:36 1995  Angela Marie Thomas (angela@cygnus.com)
4326
4327         * Makefile.in: Added prefix, exec-prefix and tooldir to
4328         FLAGS_TO_PASS so vaulting works correctly.
4329
4330 Tue Nov 14 18:32:41 1995  James G. Smith  <jsmith@cygnus.co.uk>
4331
4332         * mips/mipsidt.ld: Added.
4333         * mips/syscalls.c: Added.
4334         * mips/crt0.S: Added FPU presence check, and entry points into IDT
4335         monitor.
4336         * mips/Makefile.in (all): Updated to build generic IDT monitor
4337         crt0.o file.
4338         * mips/test.c (main): Removed unnecessary prototypes.
4339         * configure.in (configdirs): Removed mips64vr4300 target.
4340         * configure: Re-generated.
4341         * config/default.mh (OBJDUMP_FOR_TARGET): Added missing parent
4342         directory path element.
4343         * mipsidt: Directory removed.
4344
4345 Fri Nov 10 12:50:03 1995  Ian Lance Taylor  <ian@cygnus.com>
4346
4347         * configure.in, */configure.in: Don't call AC_ARG_PROGRAM.
4348         * configure, */configure: Rebuild.
4349         * Makefile.in, */Makefile.in: Don't set program_transform_name.
4350
4351 Wed Nov  8 16:19:31 1995  James G. Smith  <jsmith@pasanda.cygnus.co.uk>
4352
4353         * configure.in (configdirs): Add mips*vr4300*-*-* target.
4354
4355         * configure: Re-generated.
4356
4357         * mipsidt/crt0.S: Check for FPU presence.
4358
4359         * mipsidt/mipsidt.ld: Removed explicit crt0.o from link.
4360
4361         * mipsidt/Makefile.in: Explicitly link against crt0.o file.
4362
4363 Thu Nov  2 23:27:28 1995  Rob Savoye  <rob@chinadoll.cygnus.com>
4364
4365         * config/default.mh: Add additional "../" to path used to find
4366         comp-tools binaries in an object tree.
4367
4368 Mon Oct 30 18:10:47 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
4369
4370         * rs6000/mvme-crt0.S (_start): Zero out bss before the the program
4371         starts.
4372
4373 Tue Oct 24 10:07:50 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
4374
4375         * rs6000/mvme-{exit,outbyte,inbyte}.S: Use hex for the system
4376         calls, not decimal, since formatting the disk when you intend to
4377         write out a character is not nice.
4378
4379 Mon Oct 23 22:17:12 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
4380
4381         * rs6000/mvme-crt0.S (_start): Bump sp by -4 before storing end of
4382         stack chain to avoid last word indebugger's memory.
4383
4384         * rs6000/mvme-{exit,inbyte,outbyte}.S: System call number goes in
4385         r10, not r0.
4386
4387 Mon Oct 23 17:57:23 1995  James G. Smith  <jsmith@jaalfrezi.cygnus.co.uk>
4388
4389         * mipsidt/Makefile.in: Removed the LDFLAGS_FOR_TARGET in the test
4390         program link.
4391
4392         * mipsidt/crt0.S: Changed monitor entry sequence.
4393
4394         * mipsidt/syscalls.c: Added local sbrk() function, derived from
4395         (libgloss/sbrk.c), but using the monitor routine to ascertain the
4396         amount of memory available.
4397
4398 Mon Oct 23 11:58:04 1995  James G. Smith  <jsmith@pasanda.cygnus.co.uk>
4399
4400         * mipsidt: Added (directory). This is a simple crt0 module for the
4401         IDT MIPS monitor. The existing "libgloss/mips" directory is for a
4402         specific R3000 board, so it was safer creating a new target
4403         directory.
4404         * mipsidt/Makefile.in: Added.
4405         * mipsidt/configure: Added.
4406         * mipsidt/configure.in: Added.
4407         * mipsidt/crt0.S: Added.
4408
4409         * mipsidt/syscalls.c: Added.
4410         * mipsidt/test.c: Added.
4411
4412         * configure (mips*vr4300*-*-*): Use new mipsidt target directory.
4413
4414 Mon Oct  9 21:07:08 1995  Michael Meissner  <meissner@cygnus.com>
4415
4416         * rs6000/Makefile (all asm rules): Remove asm.h dependency.
4417         * rs6000/asm.h: File deleted, moved to gcc directory as ppc-asm.h.
4418         * rs6000/mvme-{crt0,exit,inbyte,outbyte}.S: Include ppc-asm.h, not
4419         asm.h.
4420         * rs6000/sim{-crt0,ulator}.S: Ditto.
4421
4422         * rs6000/{mvme,sim}-crt0.S (_start): Don't use FUNC_START/FUNC_END
4423         for _start, since the linker needs to see this.
4424
4425 Mon Oct  9 12:08:12 1995  Stu Grossman  (grossman@cygnus.com)
4426
4427         * sparc/sparc-stub.c:  include sparclite.h to get access to register
4428         fondling macros.
4429         * (trap_low):  Save and restore FP regs if necessary.  Also, clean
4430         up save and restore of debug unit regs.
4431         * (hard_trap_info):  Add more architecturally defined traps.
4432         * (set_debug_traps):  Only set FP disabled trap if FP is disabled.
4433         * (get_in_break_mode):  Clean up.  Get rid of calls to
4434         set_hw_breakpoint_trap().  Also, use write_asi macro
4435         * (handle_exception):  Clean up `g' and `G' commands.  Add `P'
4436         command.
4437         * (hw_breakpoint):  Why was this here!?  It's gone now...
4438         * sparc/crt0.s:  Speed up prom copy loop.  Clean up window over/under
4439         flow setup.  Call main instead of jumping to it.
4440         * sparc/salib.c (get_uart_status rcv_char flush_i_cache):  Use new
4441         and improved read_asi macro.
4442         * (win_ovf win_unf):  Parameterize window size.
4443         * sparclite.h (read_asi):  Rewrite so that macro returns an rval.
4444         * (read_psr write_psr):  New macros to do the obvious.
4445         * Add conditionalized code for 933 window size.
4446
4447 Fri Oct  6 15:35:01 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
4448
4449         * rs6000/simulator.S (abort): Delete abort.
4450         * rs6000/sim-abort.c: New file, to print message that abort was
4451         called.
4452         * rs6000/Makefile.in (SIM_OBJS): Add sim-abort.o.
4453
4454         * rs6000/asm.h (FUNC_NAME, FUNC_START, FUNC_END): New macros that
4455         give the start and end of a function written in assembler.  If
4456         -mcall-aixdesc or -mcall-nt, create a function descriptor and name
4457         the real function with one or two leading periods.
4458
4459         * rs6000/{simulator,sim-crt0}.S: Use new function macros.
4460         * rs6000/mvme-{crt0,exit,inbyte,outbyte}.S: Ditto.
4461
4462         * rs6000/Makefile.in: Add asm.h as a dependent for all .S files.
4463         Compile the .S files with gcc, so that -mcall-* flags define the
4464         appropriate macros.
4465
4466 Thu Sep 28 13:49:45 1995  Ian Lance Taylor  <ian@cygnus.com>
4467
4468         * sparc/ex93x.ld: Remove crt0.o from INPUT; gcc will normally pass
4469         crt0.o anyhow.  Add leading underscore to __CTOR_LIST__, et. al.
4470         * sparc/salib.c (__main): Comment out empty function.
4471
4472 Wed Sep 20 14:36:12 1995  Ian Lance Taylor  <ian@cygnus.com>
4473
4474         * Makefile.in (maintainer-clean): New synonym for realclean.
4475         * hp74x/Makefile.in (maintainer-clean): Likewise.
4476         * m68k/Makefile.in (maintainer-clean): Likewise.
4477         * pa/Makefile.in (maintainer-clean): Likewise.
4478         * mips/Makefile.in (maintainer-clean): Likewise.
4479         * rs6000/Makefile.in (maintainer-clean): Likewise.
4480         * sparc/Makefile.in (maintainer-clean): Likewise.
4481         * doc/Makefile.in (maintainer-clean): Likewise.
4482         * testsuite/Makefile.in (maintainer-clean): Likewise.
4483         * testsuite/libgloss.all/Makefile.in (maintainer-clean): Likewise.
4484
4485 Sat Sep 16 23:04:11 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
4486
4487         * rs6000/Makefile.in (all): Fix typo preventing simulator from
4488         being built.
4489
4490 Tue Sep 12 10:43:41 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
4491
4492         * rs6000/Makefile.in: Misc mvme support fixes.
4493
4494         * rs6000/{mvme-exit.S, mvme-inbyte.S, mvme-outbyte.S}: Strip
4495         leading underscores from identifiers.
4496
4497         * m68k/asm.h: New file, macro definitions helpful for assembly
4498         language programming.
4499         * m68k/{cpu32bug.S, crt0.S, mvme.S, mvme135-asm.S, mvme162lx-asm.S}:
4500         Use asm.h.
4501
4502         * rs6000/{mvme-crt0.S, mvme-exit.S, mvme-inbyte.S, mvme-outbyte.S}:
4503         New files, preliminary support for motorola mvme targets running
4504         the ppcbug monitor.
4505         * rs6000/Makefile.in: Build mvme support.
4506
4507         * rs6000/asm.h: New file, macro definitions helpful for assembly
4508         language programming.
4509         * rs6000/{sim-crt0.S, simulator.S}: Use asm.h.
4510
4511 Fri Sep  8 18:51:29 1995  Michael Meissner  <meissner@wogglebug.tiac.net>
4512
4513         * rs6000/sim-sbrk.c (sbrk): Add cast to silence warning.
4514
4515 Fri Sep  8 13:03:12 1995  Brendan Kehoe  <brendan@lisa.cygnus.com>
4516
4517         * m68k/idp-inbyte.c (READREG): Add volatile to the cast, to avoid
4518         reordered insns that can end up being an infinite loop.
4519         * m68k/idp-outbyte.c (READREG): Likewise.
4520
4521 Wed Sep  6 10:01:33 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
4522
4523         * rs6000/sim-sbrk.c (sbrk): Use the brk system call, instead of
4524         using a large static area for the break area.
4525
4526 Thu Aug 24 14:57:28 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
4527
4528         * rs6000/Makefile.in (install*): Add separate installation rules
4529         for sim and evm targets.
4530
4531 Wed Aug 23 16:49:02 1995  Michael Meissner  <meissner@tiktok.cygnus.com>
4532
4533         * rs6000/sim*: Add PowerPC simulator support.
4534
4535 Tue Aug 22 11:52:40 1995  Jeff Law  (law@snake.cs.utah.edu)
4536
4537         * pa/hp-milli.s: Add entry/exit pseudo-ops around all exported
4538         code.  Fix callinfo directives to include "millicode" attribute.
4539
4540         * pa/hp-milli.s (divU): Fix bug found by arith-rand1.c testing.
4541
4542 Mon Aug 21 23:31:42 1995  Jeff Law  (law@snake.cs.utah.edu)
4543
4544         * pa/crt0.S ($START$): Use local label prefix for local label
4545         "bssloop".
4546
4547 Mon Aug 14 11:57:46 1995  Kung Hsu  <kung@mexican.cygnus.com>
4548
4549         * ex93x/sparclite.h: add __WINSIZE.
4550         * ex93x/salib.c: Use __WINSIZE, implements write with $O command of
4551         stub protocol.
4552
4553 Thu Aug  3 14:40:12 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
4554
4555         * Makefile.in: Updated to reflect filename changes.
4556
4557         * m68k/mc68681-duart.h: Renamed to m68681reg.h.
4558         * m68k/mc68681-duart.c: Split up and renamed to idp-inbyte.c and
4559         idp-outbyte.c
4560
4561 Fri Jul 28 11:23:24 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
4562
4563         * m68k/mc68681-duart.h: Removed everything except register offsets.
4564         Changed offsets so they reflect actual chip instead of how device
4565         is mapped into the IDP address space.
4566         * m68k/mc68681-duart.c (DUART_ADDR): New macro, base address.
4567         (READREG, WRITEREG): Changed to correspond to unusual way the
4568         device is mapped (ie. base address + (reg offset * 4) + 3)).
4569         (duart_status, duart_mode, duart_init, duart_restore): Removed,
4570         these interfaces were never used and didn't work.
4571         (outbyte): Removed unconditional delay.
4572
4573         * m68k/crt0.S: Use SYM(_end) instead of end.  This completes my
4574         change of April 18th which makes the "_end" symbol compatible
4575         with both a.out and coff toolchains.
4576         (zerobss): Handle zero-length bss.
4577
4578 Thu Jul 27 15:35:37 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
4579
4580         * configure, {doc, hp74x, m68k, mips, pa, sparc}/configure:
4581         regenerated with autoconf 2.4.2.
4582
4583 Wed Jul 26 13:42:27 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
4584
4585         * doc/porting.texi: Fix typos and spelling errors.
4586
4587 Mon Jun 26 09:23:23 1995  Jeffrey A. Law  <law@rtl.cygnus.com>
4588
4589         * pa/Makefile.in: Enable HP supplied millicode routines.
4590         * pa/hp-milli.s:  Make sure copyright notice gets included
4591         in objects files.
4592
4593         * pa/crt0.S ($START$): Use "%" instead of "'" to avoid losing whe
4594         run through cpp.
4595
4596 Fri Jun 16 18:40:22 1995  Jeffrey A. Law  <law@rtl.cygnus.com>
4597
4598         * pa/crt0.S ($START$): Use long-calls to call main and exit.
4599
4600 Tue Jun 13 16:05:13 1995  Rob Savoye  <rob@darkstar.cygnus.com>
4601
4602         * pa/crt0.S: Call exit() after returning from main.
4603
4604 Tue Jun 13 10:43:14 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
4605
4606         * Makefile.in, {doc, hp74x, m68k, mips, pa, sparc}/Makefile.in
4607           (distclean, realclean): Remove autoconf-generated config.cache
4608           and config.log files.
4609
4610 Mon Jun  5 15:56:22 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
4611
4612         * config/{default.mh, dos.mh} (CFLAGS_FOR_TARGET): Added -O2.
4613           (.c.o, .s.o, .S.o, etc.): Don't use @ to hide how the compiler
4614           is invoked, it makes it much more difficult to debug.
4615
4616 Tue May 30 19:07:59 1995  Rob Savoye  <rob@darkstar.cygnus.com>
4617
4618         * testsuite/libgloss.all/math.c: Add additional tests for modulo.
4619
4620 Mon May 29 13:03:39 1995  Rob Savoye  <rob@darkstar.cygnus.com>
4621
4622         * stat.c: Add const so it works with newlib's stat.h.
4623
4624 Thu May 25 16:28:42 1995  Rob Savoye  <rob@darkstar.cygnus.com>
4625
4626         * m68k/mvme.S: Extend sign using two instructions rather than one
4627         so it'll work on a stock mc68000.
4628
4629 Tue May 23 18:12:19 1995  Rob Savoye  <rob@darkstar.cygnus.com>
4630
4631         * close.c, stat.c, fstat.c, open.c, lseek.c, print.c, putnum.c,
4632         unlink.c read.c, sbrk.c, getpid.x, kill.c: New files that used to
4633         be glue.c.
4634         * {m68k,pa,mips}/Makefile.in: Build using broken up glue.c.
4635         * pa/Makefile.in: Make all just build BSP, add seperate test
4636         target.
4637         * most files: add Cygnus BSD-style copyright message.
4638
4639 Tue May 23 12:58:03 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
4640
4641         * configure.in, {hp74x, m68k, mips, pa, sparc}/configure.in:
4642           Use changequote() to temporarily turn off m4 quoting so that
4643           i[345]86-*-go32 pattern in case statement remains unchanged.
4644         * configure, {hp74x, m68k, mips, pa, sparc}/configure:
4645           regenerated.
4646
4647 Tue May 23 11:15:52 1995  Angela Marie Thomas  <angela@cirdan.cygnus.com>
4648
4649         * mips/Makefile.in (SCRIPT): added "SCRIPT = array.ld" so installs
4650         work correctly.
4651
4652 Mon May 22 21:33:49 1995  Rob Savoye  <rob@darkstar.cygnus.com>
4653
4654         * ex93x: renamed to sparc.
4655         * r3000: renamed to mips.
4656         * hppro: renamed to pa.
4657         * configure.in, configure: Use new directory names.
4658         * config/default.mh: Remove '' in sed program_transform_name so
4659         it actually works.
4660         * doc/porting.texi: update doc.
4661
4662 Wed May 17 17:25:53 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
4663
4664         * doc/configure.in: converted to autoconf.
4665         * doc/configure: New file, generated with autoconf 2.3.
4666
4667         * Makefile.in, config/{ex93x, hp74x, hppro, m68k,
4668           r3000}/Makefile.in (Makefile.in): Added config.status to
4669           dependency list.
4670           (config.status): New target.
4671
4672         * m68k/Makefile.in: Build M68332BCC BSP.
4673
4674 Wed May 10 18:43:21 1995  Stu Grossman  (grossman@andros.cygnus.com)
4675
4676         * glue.c:  Change decl of end to char[] for some reason.
4677         * (sbrk):  Rewrite sbrk so that it works.
4678         * (fstat):  Return status indicating fd is for a tty.  Makes stdio
4679         work better.
4680         * hppro/crt0.S (_sr4export):  Retrieve rp from -24(sp), not
4681         -18(sp).  Note that -24 decimal == -18 hex...
4682         * hppro/op50n-io.S:  Add read and write interfaces to the rom
4683         monitor.  Unfortunately, the monitor doesn't seem to work...
4684         * hppro/op50n.ld:  Clean up lots of stuff.  Define memory in a
4685         nice way.  Define stack and reserve space.  Put heap after stack.
4686
4687 Thu May  4 10:28:01 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
4688
4689         * configure.in (AC_PREREQ): Changed to 2.3, since autoconf
4690           versions prior to this generate code that AIX 4.X's sh can't
4691           hack.
4692
4693         * m68k/Makefile.in (BCC_BSP, BCC_OBJS): New BSP for M68332BCC.
4694         * m68k/cpu32bug.S: New file, support for cpu32bug monitor used by
4695           bcc.
4696         * m68k/bcc.ld: Link with bcc.o
4697
4698 Fri Apr 21 16:17:17 1995  Torbjorn Granlund  <tege@rtl.cygnus.com>
4699
4700         * hppro/{milli.S,divide.S,divI.S,divU.S,multiply.S,test-div.c,
4701         test-dyncall.c,test-mul.c,remI.S,remU.S,dyncall.S}: Delete.
4702         * hppro/divcnst-generic/*: Delete.
4703         * hppro/divcnst-fast/*: Delete.
4704         * hppro/Makefile.in: Delete junk.
4705
4706 Tue Apr 18 11:22:47 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
4707
4708         * m68k/{bcc.ld idp.ld, mvme135.ld, mvme162lx.ld}: Removed stack
4709           section, moved __stack definition to the top level and set it
4710           explicitly to the value appropriate to the target board.
4711           Added __end symbol (needed for a.out toolchains).
4712
4713 Mon Apr 17 12:48:48 1995  Stu Grossman  (grossman@andros.cygnus.com)
4714
4715         * hppro/w89k.ld:  Move _stack to before `end' and `_end' so that
4716         malloc doesn't trash the stack.
4717         * hppro/w89k-io.c (outbyte):  Make this be void, and remove return
4718         value, which is useless anyway.
4719
4720 Mon Apr 17 06:13:55 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
4721
4722         * m68k/bcc.ld: New file, linker script for M68332BCC Business Card
4723           Computer.
4724         * m68k/Makefile.in: Install BCC linker script.
4725
4726         * Makefile.in: Fixed typo.
4727
4728         * hppro/configure.in: Changed AC_INIT file from crt0.s to crt0.S.
4729         * hppro/configure: regenerated.
4730
4731 Mon Apr 17 00:02:15 1995  Stu Grossman  (grossman@andros.cygnus.com)
4732
4733         * hppro/op50n.ld:  Define _stack explicitly instead of implicitly
4734         via common.
4735         * hppro/{w89k-io.c w89k.h}:  Use pointers to volatile for inp and
4736         outp.  Use correct port numbers for COM1 serial port.
4737
4738 Fri Apr 14 16:56:35 1995  Ken Raeburn  <raeburn@cujo.cygnus.com>
4739
4740         * m68k/mc68ec.c (_exit): Use extended asm construct to get the
4741         proper immediate-operand syntax for whatever the target assembler
4742         configuration is.
4743         * m68k/mvme.S (__IMMEDIATE_PREFIX__, IMM): Copy and use macro
4744         definitions as in m68k/crt0.S.
4745
4746 Thu Apr 13 16:48:46 1995  Angela Marie Thomas  <angela@cirdan.cygnus.com>
4747
4748         * Makefile.in: fixed clean rules such that they do not try to
4749           clean ${SUBDIRS} if libgloss not supported on that target.
4750
4751 Thu Apr 13 13:39:46 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
4752
4753         * configure.in: Append new subdirectories to ${configdirs}.
4754           (go32-*-*): Removed.
4755         * configure: Regenerated.
4756
4757         * m68k/mvme162lx.ld: Put __stack in ram, even though it's not
4758           loaded.
4759
4760         * m68k/Makefile.in: Don't hide how BSP objects are built.
4761
4762         * glue.c (print, putnum): declared void.
4763
4764         * {hppro,m68k}/Makefile.in: Use ${CC_FOR_TARGET} to link executables.
4765           (LIBS_FOR_TARGET): Removed.
4766
4767         * config/{default.mh, dos.mh} (NEWLIB_CFLAGS, NEWLIB_LDFLAGS): New
4768           make variables, expands to compiler flags to find headers and
4769           libraries if ${objroot}/newlib is present.
4770           (CFLAGS_FOR_TARGET): Added ${NEWLIB_CFLAGS}.
4771           (LDFLAGS_FOR_TARGET): Added ${NEWLIB_LDFLAGS}.
4772           (LIBC_FOR_TARGET, LIBM_FOR_TARGET, LIBGCC_FOR_TARGET,
4773           LIBS_FOR_TARGET): Removed.
4774
4775 Thu Apr 13 11:51:17 1995  Torbjorn Granlund  <tege@adder.cygnus.com>
4776
4777         * m68k/Makefile.in (install): Use correct names for MVME* variables.
4778         * configure.in: Delete `unknown' from m68* case.
4779
4780 Thu Apr 13 11:47:01 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
4781
4782         * m68k/crt0.S: initialize stack pointer to __stack before creating
4783           inital stack frame.
4784
4785         * m68k/{idp.ld, mvme135.ld, mvme162lx.ld}: Move __stack out of
4786           bss, and into its own segment with an address at top of RAM.
4787
4788 Wed Apr 12 12:36:28 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
4789
4790         * {.,ex93x,hp74x,hppro,m68k,r3000}/{Makefile,configure}.in:
4791           converted to autoconf.
4792         * {.,ex93x,hp74x,hppro,m68k,r3000}/configure: New files, generated
4793           from configure.in with autoconf 2.3.
4794
4795 Mon Apr 10 22:50:48 1995  J.T. Conklin  (jtc@rtl.cygnus.com)
4796
4797         * m68k/{idp.ld, mvme135.ld, mvme162lx.ld}: Revert last change,
4798           CONSTRUCTING and RELOCATING only work for linker scripts built
4799           from ld/scripttmpl/*.
4800
4801         * m68k/{idp.ld, mvme135.ld, mvme162lx.ld}: Changed to use
4802           CONSTRUCTING and RELOCATING expressions so that the ctor/dtor
4803           tables and etext, edata, and end variables are only done when
4804           appropriate.
4805
4806 Fri Apr  7 17:30:35 1995  Stu Grossman  (grossman@andros.cygnus.com)
4807
4808         * config/default.mh:  Use $${srcroot} instead of ${SRCROOT} to get
4809         inherited value.
4810         * hppro/crt0.S:  Remove static definitions of _stack and $global$.
4811         Let the linker script define them in the BSS segment.
4812         * hppro/w89k.ld:  Use MEMORY to define memory regions.  Add defs
4813         for $global$ and _stack in the appropriate segments.
4814
4815 Tue Apr  4 18:27:37 1995  Jason Molenda  (phydeaux@cygnus.com)
4816
4817         * Makefile.in (FLAGS_TO_PASS): pass down MAKEINFO.
4818
4819 Thu Mar 30 18:10:53 1995  Kung Hsu  <kung@mexican.cygnus.com>
4820
4821         * ex93x/ex93x.ld: Add crt0.o in INPUT.
4822         * ex93x/sparcl-stub.c: Add nop after bg insn.
4823         * ex93x/sparc-stub.c: Add & 0x7f mask to all character input.
4824
4825 Thu Mar 30 15:22:31 1995  Rob Savoye  <rob@rtl.cygnus.com>
4826
4827         * {hppro,m68k,ex93x,testsuite/libgloss}/configure.in: Add SRCROOT
4828         variable.
4829         * {hppro,m68k,ex93x,testsuite/libgloss}/Makefile.in: Add SRCROOT
4830         variable.
4831         * config/default.mh: Use SRCROOT to find the newlib includes.
4832
4833 Tue Mar 28 19:54:26 1995  Rob Savoye  <rob@darkstar.cygnus.com>
4834
4835         * configure.in, testsuite/configure.in: Add SRCROOT variable.
4836         * glue.c: Change "char *path" to "const char *path" so it works
4837         with the changes stat.h.
4838
4839 Fri Mar 24 17:29:08 1995  Kung Hsu  <kung@mexican.cygnus.com>
4840
4841         * ex93x/ex93x.ld: The stubs module now can have different names for
4842         different SPARClite chips. Use default one which is slite930.o.
4843
4844 Mon Mar 20 15:49:46 1995  J.T. Conklin  <jtc@rtl.cygnus.com>
4845
4846         * m68k/mc68ec.c (_exit): Changed to take integer status argument.
4847
4848 Fri Mar 17 17:48:42 1995  Kung Hsu  <kung@mexican.cygnus.com>
4849
4850         * config/default.h: add -I. to INCLUDES.
4851         * ex93x/salib.c: to include sparclite.h.
4852         * ex93x/sparclite.h: new file copied from gdb/sparclite.
4853
4854         * config/default.mh: Fix INCLUDES to one level less '../'.
4855
4856 Mon Mar 13 17:05:35 1995  Rob Savoye  <rob@darkstar.cygnus.com>
4857
4858         * testsuite/libgloss.all/misc.c: Misc bug reports, mostly
4859         soft-float tests.
4860
4861 Wed Mar  8 19:00:18 1995  Rob Savoye  <rob@darkstar.cygnus.com>
4862
4863         * m68k/{crt0.S, mvem135.ld, mvme162lx.ld, idp.ld}: Setup the stack
4864         in the linker script. Use a macro to cover using '#' or '&' for
4865         immediate values.
4866         * m68k/{mvme135-asm.S, mvme162lx-asm.S}: Use a macro to cover
4867         using '#' or '&' for immediate values.
4868         * testsuite/libgloss.all/io.c: Add a test for read().
4869
4870 Thu Feb 16 21:13:34 1995  Rob Savoye  <rob@darkstar.cygnus.com>
4871
4872         * glue.c: Make use _ansi.h, move to top level libgloss directory
4873         form all other directories.
4874         * Makefile.in: All Makefiles had SCRIPTS and OBJROOT added.
4875         * {m68k,hppro,r3000)/Makefile.in: All build the test the same way
4876         using OBJROOT.
4877         * configure.in: All configure.in now edit the value to OBJROOT in
4878         the Makefiles they produce.
4879         * config/default.mh: Use OBJROOT for paths to test for fresh
4880         binaries.
4881         * configure.in: Add the testsuite directory.
4882         * testsuite/config/{m68k.mt,mips.mt}: New target support for
4883         MVME135, IDP, and Array targets.
4884
4885 Thu Feb  9 21:45:33 1995  Rob Savoye  <rob@darkstar.cygnus.com>
4886
4887         * testsuite/libgloss.all{varargs.c,varargs2.c}: Test cases for
4888         traditional and ANSI varargs. (which currently fail)
4889         * Makefile.in: Build intelligently and use dependancies so we
4890         don't rebuild the world for each test run.
4891         * configure.in: Make a .gdbinit file to run the tests and load via
4892         gdb.
4893
4894 Wed Mar  8 22:35:29 1995  Ken Raeburn  <raeburn@cujo.cygnus.com>
4895
4896         * m68k/idp.ld: Omit STARTUP line, since crt0.o is being supplied
4897         by gcc.
4898
4899 Thu Feb 23 12:08:19 1995  Ken Raeburn  <raeburn@cujo.cygnus.com>
4900
4901         * m68k/crt0.S: Use '&' instead of '#' for immediate operands.
4902         * m68k/mc68ec.c: Ditto, in asm statements.
4903         * m68k/mvme.S: Ditto.
4904
4905 Wed Feb  1 23:55:39 1995  Angela Marie Thomas  <angela@cirdan.cygnus.com>
4906
4907         * Makefile.in (all): added "else" statements for Ultrix to work
4908
4909 Fri Jan 27 10:48:20 1995  Rob Savoye  <rob@darkstar.cygnus.com>
4910
4911         * testuite/{config,lib,libgloss.all}: DejaGnu testing support.
4912         * testsuite/config/support.c: A minimal testing API for minimal
4913         targets.
4914         * testsuite/config/hppa.mt: Set build flags for PRO targets.
4915         * libgloss.all/{float.c,memory.c,io.c,double.c,math.c,array.c}:
4916         Test cases for libgloss and soft-float.
4917
4918         * hppro/{w89k.ld,op50n.ld}: Set .text here now.
4919
4920 Wed Jan 25 21:16:38 1995  Rob Savoye  <rob@darkstar.cygnus.com>
4921
4922         * testsuite/{config,lib,libgloss.all}: The beginnings of a test
4923         suite for low level stuff. A few test cases now all build.
4924
4925 Thu Jan 12 13:02:12 1995  Rob Savoye  <rob@darkstar.cygnus.com>
4926
4927         * config/default.mh: Change default path for linking in a freshly
4928         built libc.a, libm.a, libgcc.a to work with -msift-float.
4929
4930         * hppro/Makefile.in: Set MULTILIB so the -msoft-float safe
4931         libraries get used.
4932
4933         * m68k/Makefile.in: Use explicit rules, rather than redefining
4934         .c.o. This is to force compiling with -m68000.
4935
4936 Mon Jan  9 15:28:10 1995  Rob Savoye  <rob@darkstar.cygnus.com>
4937
4938         * {hppro,m68k,r3000}/glue.c: Return correct value on receiving a
4939         '\n' or '\r'.
4940
4941 Fri Dec 30 15:05:03 1994  Rob Savoye  <rob@darkstar.cygnus.com>
4942
4943         * doc, doc/Makefile.in, configure.in: New directory.
4944         * doc/porting.texi: New manual that explains porting the GNU tools
4945         to embedded systems.
4946
4947 Mon Dec 19 16:05:37 1994  Kung Hsu  <kung@mexican.cygnus.com>
4948
4949         * ex93x/Makefile.in: Use sparcl-stub.c instaed of sparc-stub.c,
4950         which has hardware breakpoint support.
4951         * ex93x/Makefile.in: Also generate slite930.o and slite931.o, instead
4952         slite.o.
4953         * ex93x/sparcl-stub.c: New file.
4954         * ex93x/sparc-stub.c: Use latest from gdb/sparclite directory.
4955
4956 Fri Dec 16 15:17:14 1994  Rob Savoye  <rob@darkstar.cygnus.com>
4957
4958         * r3000/crt0.S: Zero the bss section by words.
4959
4960         * r3000/Makefile.in: Add in the rest of the support code for the
4961         Array Tech board.
4962
4963         * r3000/array.ld: Set the memory map for the Array Tech LSI
4964         prototype.
4965
4966         * r3000/array-io.c: Lowest level I/O code for Array Tech LSI
4967         prototype using ROM entry points.
4968
4969 Wed Dec 14 10:23:41 1994  Rob Savoye  <rob@darkstar.cygnus.com>
4970
4971         * hppro/crt0.S: Add _sr4export function so GDB calls work.
4972
4973         * hppro/Makefile.in: Link in libc.a twice so atexit works().
4974
4975         * hppro/glue.c: Don't stub out __main anymore.
4976
4977 Tue Dec 13 15:42:23 1994  Rob Savoye  <rob@darkstar.cygnus.com>
4978
4979         * r3000/Makefile.in: Look for both libgcc2 and libgcc.
4980
4981         * r3000/glue.c,crt0.S,test.c: New support for for mips.
4982
4983         * configure.in: Configure r3000 dir for a mips chip.
4984
4985 Tue Dec  6 15:24:41 1994  Rob Savoye  <rob@darkstar.cygnus.com>
4986
4987         * hppro/divcnst-generic/*.S. Add .exit and .procend so it'll
4988         compile.
4989
4990         * hppro/Makefile.in: Link in the rest of the millicode routines.
4991
4992 Mon Nov 21 20:21:48 1994  Rob Savoye  <rob@darkstar.cygnus.com>
4993
4994         * hppro/configure.in,config/dos.mh: Work for a canadian cross,
4995          since xgcc is for the wrong architecture.
4996
4997 Thu Nov 17 21:07:52 1994  Rob Savoye  <rob@darkstar.cygnus.com>
4998
4999         * config/default.mh: Find the corrrect libgcc2.a.
5000
5001         * Makefile.in: Link in libgcc2.a by default. Build new millicode
5002         routines.
5003
5004         * divI.S, divU.S, multiply.S, remI.S, remU.S, test-div.c,
5005         test-dyncall.c, test-mul.c: New millicode files for low level math
5006         support.
5007
5008         * test.c: Use printf so millicode gets exercised.
5009
5010         * divcnst-fast/divU_10.S, divU_12.S, divU_3.S, divU_5.S, divU_6.S,
5011         divU_9.S: Fast versions of some division routines.
5012
5013         * divcnst-generic/divI_14.S, divI_5.S, divI_9.S, divU_14.S
5014         divU_5.S, divU_9.S divI_10.S, divI_15.S, divI_6.S, divU_10.S,
5015         divU_15.S, divU_6.S divI_12.S, divI_3.S, divI_7.S, divU_12.S,
5016         divU_3.S, divU_7.S: Yet more millicode routines.
5017
5018 Wed Nov 16 15:25:03 1994  Rob Savoye  (rob@cygnus.com)
5019
5020         * config/default.mh: Add default searches for the correct libc and
5021         libm.
5022
5023         * Makefile.in: Use ${LIBC_FOR_TARGET} and ${LIBM_FOR_TARGET}
5024
5025         * hppro/w89k.ld,op50n.ld,Makefile.in: Don't try to link in libc
5026         for the test program.
5027
5028 Tue Nov  8 17:12:35 1994  Rob Savoye  <rob@rtl.cygnus.com>
5029
5030         * m68k/glue.c: Remove errno so there's no libc dependancies.
5031
5032         * m68k/mvme135-asm.S: Moved setup_vectors and exceptionHandler
5033         from mvme.S so the library can link without the stub.
5034
5035         * m68k: New directory. Merge the idp, shared, and mvme135
5036         directories into one place.
5037
5038         * config/default.mh: Use CC_FOR_TARGET for .S files so the
5039         preprocessor actually gets run.
5040
5041         * ex93x/crt0.s, ex93x/salib.c: Migrate changes from gdb/sparclite.
5042
5043 Fri Sep 16 21:22:57 1994  Rob Savoye  (rob@darkstar.cygnus.com)
5044
5045         * shared, idp, mvme135: Support for Motorola IDP and MVME135 m68k
5046         based target boards. Moved from newlib/stub.
5047
5048         * ex93x: Move from newlib/stub/ex93x. Sparclite ex93x
5049         board support.
5050
5051         * hp74x, hppro: Add HP 742 & hp743 code "as is" with a working but
5052         unfinished gdb stub. Add hppro for the WinBind and Oki Pa target
5053         boards.
5054
5055         * libgloss: Creation. A library for board support packages. The
5056         Gnu low-level OS Support. Move mvme135/ChangeLog to here.
5057
5058 Wed Sep 29 20:42:34 1993  Rob Savoye  (rob@darkstar.cygnus.com)
5059
5060         * mvme135/crt0.S, mvme135/glue.c: Moved to ../shared.
5061
5062 Thu Apr  1 13:18:15 1993  Ian Lance Taylor  (ian@cygnus.com)
5063
5064         * mvme135/mvme.S: Renamed exceptionhandler to exceptionHandler, which is
5065         what mvme135-stub.c expects.
5066
5067 Tue Mar 30 18:44:43 1993  Doug Evans  (dje@poseidon.cygnus.com)
5068
5069         * mvme135/mvme135-stub.c (initializeRemcomErrorFrame): Remove reference to
5070         __STDC__.
5071
5072 Tue Dec 29 10:15:33 1992  Ian Lance Taylor  (ian@cygnus.com)
5073
5074         * mvme135/mvme135-asm.S: new file.
5075         mvme135-stub.c: moved all assembler routines into mvme135-asm.S.
5076         Makefile.in: build mvme135-stub.o.
5077
5078         * ChangeLog: created.