blob: c3db1013bd17f4c250dbb64fef7fc08b51e8c39d [file] [log] [blame]
SECTIONS
{
.text : {
BORINGSSL_bcm_text_start = .;
*(.text)
BORINGSSL_bcm_text_end = .;
}
.rodata : {
BORINGSSL_bcm_rodata_start = .;
*(.rodata)
BORINGSSL_bcm_rodata_end = .;
}
/DISCARD/ : {
*(.rela.dyn)
*(.data)
*(.rel.ro)
*(*.text.*)
*(*.data.*)
/* This should be included to catch any unexpected rodata subsections, but
it crashes the linker!
*(*.rodata.*) */
}
}