xref: /aosp_15_r20/external/boringssl/src/crypto/fipsmodule/fips_shared.lds (revision 8fb009dc861624b67b6cdb62ea21f0f22d0c584b)
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