mirror of
https://github.com/skerkour/black-hat-rust
synced 2026-06-08 17:29:34 +00:00
23 lines
194 B
Plaintext
23 lines
194 B
Plaintext
ENTRY(_start);
|
|
|
|
SECTIONS
|
|
{
|
|
. = ALIGN(16);
|
|
.text :
|
|
{
|
|
*(.text.prologue)
|
|
*(.text)
|
|
*(.rodata)
|
|
}
|
|
.data :
|
|
{
|
|
*(.data)
|
|
}
|
|
|
|
/DISCARD/ :
|
|
{
|
|
*(.interp)
|
|
*(.comment)
|
|
*(.debug_frame)
|
|
}
|
|
} |