Files
2025-03-17 17:31:42 -04:00

21 lines
330 B
Plaintext

SECTIONS
{
.text :
{
*( .text$A );
*( .text$B );
*( .rdata* );
*( .text$C );
}
/* Discard exception handling and debug sections */
/DISCARD/ :
{
*(.pdata);
*(.xdata);
*(.debug*);
*(.eh_frame);
*(.note*);
*(.comment*);
}
}