Changeset db88957 in rtems for c/src/lib/libbsp/m68k/mvme136/startup/linkcmds
- Timestamp:
- Oct 26, 1998, 4:18:58 PM (22 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 415ea6a
- Parents:
- 2f3692ee
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/m68k/mvme136/startup/linkcmds
r2f3692ee rdb88957 14 14 */ 15 15 16 StackSize = DEFINED(StackSize) ? StackSize : 0x1000; 16 17 MEMORY 17 18 { … … 61 62 *(.bss) 62 63 *(COMMON) 64 . += StackSize; /* XXX -- Old gld can't handle this */ 65 . = ALIGN (16); 66 stack_init = .; 63 67 end = . ; 64 68 _end = . ;
Note: See TracChangeset
for help on using the changeset viewer.