bootloader/biosboot/ld.script
2024-11-27 17:06:47 +09:00

18 lines
147 B
Plaintext

PHDRS
{
text PT_LOAD;
}
SECTIONS
{
.text :
{
*(.text)
} :text
/DISCARD/ :
{
*(.note.gnu.property)
*(.comment)
}
}