Changeset c89ae25 in mainline for kernel/arch/ia64/_link.ld.in


Ignore:
Timestamp:
2023-10-27T17:24:14Z (19 months ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
master, topic/msim-upgrade, topic/simplify-dev-export
Children:
34120f10, b169619
Parents:
0373af9
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2023-10-27 17:03:39)
git-committer:
Jiří Zárevúcky <zarevucky.jiri@…> (2023-10-27 17:24:14)
Message:

Fix and enable —gc-sections in /kernel and /boot

File:
1 edited

Legend:

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

    r0373af9 rc89ae25  
    1818                . = ALIGN(16);
    1919                ktext_start = .;
    20                 *(K_TEXT_START);
     20                KEEP(*(K_TEXT_START));
    2121                *(.text .text.*)
    2222                ktext_end = .;
    2323
    2424                kdata_start = .;
    25                 *(K_DATA_START)
     25                KEEP(*(K_DATA_START));
    2626                *(.rodata .rodata.*);
    2727                *(.eh_frame .eh_frame.*);       /* stack unwinding data */
     
    3131                __gp = .;
    3232                *(.got .got.*)
    33                 *(.sdata)
    34                 *(.sbss)
    35                 *(.scommon)
    36                 *(.bss)
     33                *(.sdata .sdata.*)
     34                *(.sbss .sbss.*)
     35                *(.scommon .scommon.*)
     36                *(.bss .bss.*)
    3737                *(COMMON);
    3838                kdata_end = .;
Note: See TracChangeset for help on using the changeset viewer.