Changeset 8f9239e in mainline


Ignore:
Timestamp:
2006-03-12T20:11:06Z (19 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a3aa1e1
Parents:
8286c3b
Message:

Fixed mips alignment support.

Location:
libc/arch/mips32
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • libc/arch/mips32/_link.ld.in

    r8286c3b r8f9239e  
    44SECTIONS {
    55        . = 0x4000;
    6         .image : SUBALIGN(0x4000) {
     6        .init : SUBALIGN(0x4000) {
     7                *(.init);
     8        }
     9        .text : {
     10                *(.text);
     11                *(.rodata*);
     12        }
     13        .data ALIGN(0x4000) :  {
     14                *(.data);
     15        }
     16        .bss : {
     17                *(.bss);
     18                *(.sbss);
     19                *(COMMON);
     20        }
     21        /DISCARD/ : {
    722                *(*);
    823        }
  • libc/arch/mips32/src/entry.s

    r8286c3b r8f9239e  
    3131.org 0
    3232
     33.section .init, "ax"
    3334.globl __entry
    3435
Note: See TracChangeset for help on using the changeset viewer.