• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1SECTIONS
2{
3  .text : {
4    BORINGSSL_bcm_text_start = .;
5    *(.text)
6    *(.text.unlikely.*)
7    BORINGSSL_bcm_text_end = .;
8  }
9  .rodata : {
10    BORINGSSL_bcm_rodata_start = .;
11    *(.rodata)
12    *(.rodata.*)
13    BORINGSSL_bcm_rodata_end = .;
14  }
15
16  /DISCARD/ : {
17    /* These sections shouldn't exist. In order to catch any slip-ups, direct
18     * the linker to discard them. */
19    *(.rela.dyn)
20    *(.data)
21    *(.rel.ro)
22    *(*.text.*)
23    *(*.data.*)
24  }
25}
26