summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan Sidwell <nathan@codesourcery.com>2006-10-23 19:28:29 +0000
committerNathan Sidwell <nathan@codesourcery.com>2006-10-23 19:28:29 +0000
commit0af1c7e7547cf67eec397dd13d4465a80e3ac35d (patch)
treeaea2b44a299b2927518c51869178100055dceee0
parent03020ab7082e2b807434822db6c4decee440db50 (diff)
downloadbinutils-gdb-0af1c7e7547cf67eec397dd13d4465a80e3ac35d.tar.gz
libgloss/
* m68k/Makefile.in (CF_CRT0): Rename to CF_CRT0S, separate hosted & unhosted versions. (CF_OBJS): Add cf-isv.o. (CF_SOURCES): Add cf-isv.S. (cf-hosted-crt0.o, cf-unhosted-crt0.o): New targets. * m68k/cf-isv.S: New, broken out of ... * m68k/cf-crt0.S: ... here. Add HOSTED & UNHOSTED differences. * m68k/cf-crt1.c (__start1): Add heap_limit argument. (__heap_limit): Define. * m68k/cf-sbrk.c (__heap_limit): Declare. (sbrk): Adjust for __heap_limit. * m68k/cf.sc: Use different crt0's for hosted & unhosted. Install a separate isv.o file. * m68k/io.h (HOSTED_PUTCHAR): Replace with ... (HOSTED_INIT_SIM): ... this.
-rw-r--r--ChangeLog.csl19
1 files changed, 19 insertions, 0 deletions
diff --git a/ChangeLog.csl b/ChangeLog.csl
index 09d6f08deae..11750a7b275 100644
--- a/ChangeLog.csl
+++ b/ChangeLog.csl
@@ -1,3 +1,22 @@
+2006-10-23 Nathan Sidwell <nathan@codesourcery.com>
+
+ libgloss/
+ * m68k/Makefile.in (CF_CRT0): Rename to CF_CRT0S, separate hosted
+ & unhosted versions.
+ (CF_OBJS): Add cf-isv.o.
+ (CF_SOURCES): Add cf-isv.S.
+ (cf-hosted-crt0.o, cf-unhosted-crt0.o): New targets.
+ * m68k/cf-isv.S: New, broken out of ...
+ * m68k/cf-crt0.S: ... here. Add HOSTED & UNHOSTED differences.
+ * m68k/cf-crt1.c (__start1): Add heap_limit argument.
+ (__heap_limit): Define.
+ * m68k/cf-sbrk.c (__heap_limit): Declare.
+ (sbrk): Adjust for __heap_limit.
+ * m68k/cf.sc: Use different crt0's for hosted & unhosted.
+ Install a separate isv.o file.
+ * m68k/io.h (HOSTED_PUTCHAR): Replace with ...
+ (HOSTED_INIT_SIM): ... this.
+
2006-10-20 Nathan Sidwell <nathan@codesourcery.com>
libgloss/