Changeset 7c9cca11 in rtems


Ignore:
Timestamp:
10/05/99 18:34:15 (24 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
b22feedc
Parents:
0139484
Message:

Modified to remove error for overlapping sections now that
gnu.linkonce* sections are included.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • c/src/lib/libbsp/m68k/dmv152/startup/linkcmds

    r0139484 r7c9cca11  
    3333        . = ALIGN (16);
    3434
     35        . = ALIGN (16);
     36        *(.gcc_exc)
     37
    3538        /*
    3639         * C++ constructors
     
    5053        }
    5154
    52         .eh_fram : {
     55
     56        .data : {
     57                data_start = . ;
     58                _data_start = . ;
     59                *(.data)
     60                edata = ALIGN( 0x10 ) ;
     61                _edata = .;
     62        }
     63        .bss : {
     64                bss_start = . ;
     65                _bss_start = . ;
     66                *(.bss)
     67                *(COMMON)
     68                . += StackSize; /* XXX -- Old gld can't handle this */
    5369                . = ALIGN (16);
    54                 *(.eh_fram)
    55         }
    56 
    57         .gcc_exc : {
    58                 . = ALIGN (16);
    59                 *(.gcc_exc)
    60         } >ram
    61 
    62         .data ADDR( .text ) + SIZEOF( .text ):
    63         {
    64         data_start = . ;
    65         _data_start = . ;
    66         *(.data)
    67         edata = ALIGN( 0x10 ) ;
    68         _edata = .;
    69         }
    70         .bss ADDR( .data ) + SIZEOF( .data ):
    71         {
    72         bss_start = . ;
    73         _bss_start = . ;
    74         *(.bss)
    75         *(COMMON)
    76         . += StackSize; /* XXX -- Old gld can't handle this */
    77         . = ALIGN (16);
    78         stack_init = .;
    79         end = . ;
    80         _end = . ;
     70                stack_init = .;
     71                end = . ;
     72                _end = . ;
    8173        }
    8274}
Note: See TracChangeset for help on using the changeset viewer.