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


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

    r0373af9 rc89ae25  
    2828        .text : {
    2929                ktext_start = .;
     30                /* FIXME: for some reason, mixing .text with .text.* produces a crash on malta-be */
    3031                *(.text);
     32                *(.text.*);
    3133                ktext_end = .;
    3234        }
    3335        .data : {
    3436                kdata_start = .;
    35                 *(.data);                       /* initialized data */
     37                *(.data .data.*);                       /* initialized data */
    3638                *(.rodata .rodata.*);
    3739                *(.eh_frame .eh_frame.*);       /* stack unwinding data */
    3840                *(.eh_frame_hdr .eh_frame_hdr.*);
    39                 *(.sdata);
     41                *(.sdata .sdata.*);
    4042                *(.reginfo);
    41                 *(.sbss);
    42                 *(.scommon);
    43                 *(.bss);                        /* uninitialized static variables */
     43                *(.sbss .sbss.*);
     44                *(.scommon .scommon.*);
     45                *(.bss .bss.*);                        /* uninitialized static variables */
    4446                *(COMMON);                      /* global variables */
    4547        }
Note: See TracChangeset for help on using the changeset viewer.