Changeset 7c9cca11 in rtems
- Timestamp:
- 10/05/99 18:34:15 (24 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- b22feedc
- Parents:
- 0139484
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/m68k/dmv152/startup/linkcmds
r0139484 r7c9cca11 33 33 . = ALIGN (16); 34 34 35 . = ALIGN (16); 36 *(.gcc_exc) 37 35 38 /* 36 39 * C++ constructors … … 50 53 } 51 54 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 */ 53 69 . = 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 = . ; 81 73 } 82 74 }
Note: See TracChangeset
for help on using the changeset viewer.