mirror of
https://review.haiku-os.org/buildtools
synced 2025-02-01 02:54:39 +01:00
385576a748
git-svn-id: file:///srv/svn/repos/haiku/buildtools/trunk@29024 a95241bf-73f2-0310-859d-f6bbb57e9c96
16 lines
285 B
Raku
16 lines
285 B
Raku
SECTIONS
|
|
{
|
|
. = SIZEOF_HEADERS;
|
|
. = ALIGN(__section_alignment__);
|
|
.text __image_base__ + ( __section_alignment__ < 0x1000 ? . : __section_alignment__ ) :
|
|
{
|
|
*(.text)
|
|
}
|
|
. = . + 0x1000;
|
|
.data BLOCK(__section_alignment__) :
|
|
{
|
|
*(.data)
|
|
}
|
|
/DISCARD/ : { *(.*) }
|
|
}
|