mirror of
https://github.com/JayGLXR/Rusty-Stardust
synced 2026-06-06 15:54:28 +00:00
21 lines
330 B
Plaintext
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*);
|
|
}
|
|
} |