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


Ignore:
Timestamp:
2023-10-27T17:24:14Z (7 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/abs32le/_link.ld.in

    r0373af9 rc89ae25  
    33                kernel_load_address = .;
    44                ktext_start = .;
    5                 *(.text);
     5                *(.text .text.*);
    66                ktext_end = .;
    77        }
    88        .data : {
    99                kdata_start = .;
    10                 *(.data);                       /* initialized data */
    11                 *(.bss);                        /* uninitialized static variables */
     10                *(.data .data.*);                       /* initialized data */
     11                *(.bss .bss.*);                        /* uninitialized static variables */
    1212                *(COMMON);                      /* global variables */
    1313
     
    1515                *(.eh_frame .eh_frame.*);       /* stack unwinding data */
    1616                *(.eh_frame_hdr .eh_frame_hdr.*);
    17                 *(.sdata);
    18                 *(.reginfo);
     17                *(.sdata .sdata.*);
    1918        }
    2019        .sbss : {
    21                 *(.sbss);
    22                 *(.scommon);
     20                *(.sbss .sbss.*);
     21                *(.scommon .scommon.*);
    2322        }
    2423
Note: See TracChangeset for help on using the changeset viewer.