This is the mail archive of the newlib@sourceware.org mailing list for the newlib project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [patch] Push default moxie stack out in memory


On Thu, 2009-04-30 at 00:42 -0400, Anthony Green wrote:
> The default stack position needs to be pushed out a little in order 
> to accommodate some of the larger GCC testsuite tests.  Ok to 
> commit?
> 

Jeff approved this off list, and suggested that I add myself to the
MAINTAINERS file.  Here is the patch as committed.

Thanks,

AG


Index: libgloss/ChangeLog
===================================================================
RCS file: /cvs/src/src/libgloss/ChangeLog,v
retrieving revision 1.267
diff -u -r1.267 ChangeLog
--- libgloss/ChangeLog	22 Apr 2009 19:48:04 -0000	1.267
+++ libgloss/ChangeLog	1 May 2009 02:38:57 -0000
@@ -1,3 +1,8 @@
+2009-04-29  Anthony Green  <green@moxielogic.com>
+
+	* moxie/moxie-elf-common.ld: Move default stack out to accommodate
+	large GCC tests.
+
 2009-04-22  Anthony Green  <green@moxielogic.com>
 
 	* configure.in: Add moxie support.
Index: libgloss/moxie/moxie-elf-common.ld
===================================================================
RCS file: /cvs/src/src/libgloss/moxie/moxie-elf-common.ld,v
retrieving revision 1.1
diff -u -r1.1 moxie-elf-common.ld
--- libgloss/moxie/moxie-elf-common.ld	22 Apr 2009 19:48:07 -0000	1.1
+++ libgloss/moxie/moxie-elf-common.ld	1 May 2009 02:38:59 -0000
@@ -229,6 +229,6 @@
   .debug_funcnames 0 : { *(.debug_funcnames) }
   .debug_typenames 0 : { *(.debug_typenames) }
   .debug_varnames  0 : { *(.debug_varnames) }
-  .stack 0x80000 : { _stack = .; *(.stack) }
+  .stack 0x400000 : { _stack = .; *(.stack) }
   /* These must appear regardless of  .  */
 }
Index: newlib/ChangeLog
===================================================================
RCS file: /cvs/src/src/newlib/ChangeLog,v
retrieving revision 1.1346
diff -u -r1.1346 ChangeLog
--- newlib/ChangeLog	24 Apr 2009 22:52:51 -0000	1.1346
+++ newlib/ChangeLog	1 May 2009 02:39:23 -0000
@@ -1,3 +1,8 @@
+2009-04-30  Anthony Green  <green@moxielogic.com>
+
+	* MAINTAINERS: Add myself as moxie maintainer and to the
+	write-after-approval list.
+
 2009-04-24  Jeff johnston  <jjohnstn@redhat.com>
 
 	* libc/stdio/fgetc.c: Make sure sfp lock is acquired before the
Index: newlib/MAINTAINERS
===================================================================
RCS file: /cvs/src/src/newlib/MAINTAINERS,v
retrieving revision 1.7
diff -u -r1.7 MAINTAINERS
--- newlib/MAINTAINERS	22 Dec 2008 19:45:40 -0000	1.7
+++ newlib/MAINTAINERS	1 May 2009 02:39:23 -0000
@@ -34,11 +34,13 @@
 well as cpu-specific portions of the build system, without approval.
 
 m32c port		DJ Delorie		dj@redhat.com
+moxie			Anthony Green		green@moxielogic.com
 
 
 			Write After Approval
 
 These are users with general write privileges after getting approval:
 
+Anthony Green			green@moxielogic.com
 DJ Delorie			dj@redhat.com
 Jim Wilson			wilson@specifixinc.com



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]