Changeset ab08b42 in mainline for arch/amd64/_link.ld


Ignore:
Timestamp:
2005-09-03T16:40:25Z (19 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
6401f79
Parents:
f6297e0
Message:

Added symbol table lookup in exceptions.
This breaks ia64 & ppc architecture compiles.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/amd64/_link.ld

    rf6297e0 rab08b42  
    3232                *(.data);               /* initialized data */
    3333                *(.rodata*);            /* string literals */
    34                 *(COMMON);              /* global variables */
    3534                hardcoded_load_address = .;
    3635                QUAD(0xffffffff80008000);
     
    3938                hardcoded_kdata_size = .;
    4039                QUAD(kdata_end - kdata_start + (unmapped_kdata_end - unmapped_kdata_start));
     40                *(COMMON);              /* global variables */
     41
     42
     43
    4144                *(.eh_frame);
    4245                *(.bss);                /* uninitialized static variables */
    4346                *(K_DATA_END);
     47
     48                symbol_table = .;
     49                *(symtab.*);            /* Symbol table, must be LAST symbol!*/
     50
    4451                kdata_end = .;
    4552        }
Note: See TracChangeset for help on using the changeset viewer.