Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/dreamcast/conf Support cross-compilers that add the...



details:   https://anonhg.NetBSD.org/src/rev/77a3f5003429
branches:  trunk
changeset: 504471:77a3f5003429
user:      marcus <marcus%NetBSD.org@localhost>
date:      Sat Mar 03 19:45:57 2001 +0000

description:
Support cross-compilers that add the underscore for a little longer.
This _will_ go away.

diffstat:

 sys/arch/dreamcast/conf/shl.x |  3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diffs (27 lines):

diff -r cbad51cd4769 -r 77a3f5003429 sys/arch/dreamcast/conf/shl.x
--- a/sys/arch/dreamcast/conf/shl.x     Sat Mar 03 19:42:38 2001 +0000
+++ b/sys/arch/dreamcast/conf/shl.x     Sat Mar 03 19:45:57 2001 +0000
@@ -12,6 +12,7 @@
     *(.rodata)
     *(.strings)
      etext = . ; 
+     _etext = . ;  /* XXX */
   }  > ram
   .tors :
   {
@@ -26,6 +27,7 @@
   {
     *(.data)
      edata = . ; 
+     _edata = . ;  /* XXX */
   }  > ram
   .bss :
   {
@@ -33,6 +35,7 @@
     *(.bss)
     *(COMMON)
      end = . ;  
+     _end = . ;  /* XXX */
   }  > ram
   .stack   :
   {



Home | Main Index | Thread Index | Old Index