Add linker relaxation support for the AVR
[deliverable/binutils-gdb.git] / ld / scripttempl / h8500m.sc
index 06ce2af6b4609044d80dce22cc27ab27931c6b0a..3314066ed63b6857278195cf24405dbc8140479a 100644 (file)
@@ -12,27 +12,27 @@ OUTPUT_ARCH(${ARCH})
 
 /* Code and data, both larger than 64k */
 
-SECTIONS                               
-{                                      
+SECTIONS
+{
 .text ${RELOCATING+ 0x10000} :
-       {                                       
-         *(.text)                              
-         ${RELOCATING+ _etext = . ; }
+       {
+         *(.text)
+         ${RELOCATING+ _etext = . ; }
        }
 
 .data  ${RELOCATING+ 0x20000} :
        {
          *(.data)
          ${RELOCATING+ _edata = . ; }
-       } 
+       }
 
 .rdata  ${RELOCATING+ . } :
        {
-         *(.rdata); 
+         *(.rdata);
          *(.strings)
-         
-       ${CONSTRUCTING+${TORS}}
-       } 
+
+         ${CONSTRUCTING+${TORS}}
+       }
 
 .bss  ${RELOCATING+ . } :
        {
@@ -46,20 +46,16 @@ SECTIONS
        {
          ${RELOCATING+ _stack = . ; }
          *(.stack)
-       } 
+       }
 
-.stab  0 ${RELOCATING+(NOLOAD)} : 
-        {
-          [ .stab ]
+.stab  0 ${RELOCATING+(NOLOAD)} :
+       {
+         [ .stab ]
        }
-       
+
 .stabstr  0 ${RELOCATING+(NOLOAD)} :
        {
          [ .stabstr ]
        }
 }
 EOF
-
-
-
-
This page took 0.023893 seconds and 4 git commands to generate.