hc
2023-11-22 f743a7adbd6e230d66a6206fa115b59fec2d88eb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/* SPDX-License-Identifier: GPL-2.0 */
#include <asm/page.h>
 
/*
 * With CONFIG_LTO_CLANG, LLD always enables -fdata-sections and
 * -ffunction-sections, which increases the size of the final module.
 * Merge the split sections in the final binary.
 */
SECTIONS {
   /*
    * LLVM may emit .eh_frame with CONFIG_CFI_CLANG despite
    * -fno-asynchronous-unwind-tables. Discard the section.
    */
   /DISCARD/ : {
       *(.eh_frame)
   }
 
   .bss : {
       *(.bss .bss.[0-9a-zA-Z_]*)
       *(.bss..L*)
   }
 
   .data : {
       *(.data .data.[0-9a-zA-Z_]*)
       *(.data..L*)
   }
 
   .rodata : {
       *(.rodata .rodata.[0-9a-zA-Z_]*)
       *(.rodata..L*)
   }
 
   /*
    * With CFI_CLANG, ensure __cfi_check is at the beginning of the
    * .text section, and that the section is aligned to page size.
    */
   .text : ALIGN(PAGE_SIZE) {
       *(.text.__cfi_check)
       *(.text .text.[0-9a-zA-Z_]* .text..L.cfi*)
   }
}