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]

[patch] Push default moxie stack out in memory


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?

Thanks,

AG



2009-04-29  Anthony Green  <green@moxielogic.com>

	* moxie/moxie-elf-common.ld: Move default stack out to accommodate
	large GCC tests.

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	30 Apr 2009 03:56:48 -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 Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]