Changeset 1d9c541 in mainline


Ignore:
Timestamp:
2011-04-13T19:10:01Z (13 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
18ba2e4f
Parents:
af103f4
Message:

Modify the ia64 loader linker script so that not explicitly mentioned
input sections are discarded. Should any section like that be actually
needed, the build will fail during link time with a proper error
message.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • boot/arch/ia64/_link.ld.in

    raf103f4 r1d9c541  
    1111                *(.rodata);
    1212                *(.rodata.*);
    13                 *(.data);               /* initialized data */
     13                *(.data .data.*);       /* initialized data */
    1414                __gp = . ;
    1515                *(.got .got.*);
     
    2020
    2121        /DISCARD/ : {
    22                 *(.comment);
    23                 *(.note*);
     22                *(.*);
    2423        }
    2524}
Note: See TracChangeset for help on using the changeset viewer.