mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-28 05:51:04 +00:00
16 lines
231 B
Perl
16 lines
231 B
Perl
|
SECTIONS {
|
||
|
.text :
|
||
|
{
|
||
|
tmpdir/alignof.o (.text)
|
||
|
}
|
||
|
.data :
|
||
|
{
|
||
|
tmpdir/alignof.o (.data)
|
||
|
LONG (ALIGNOF(.text))
|
||
|
LONG (ALIGNOF(.data))
|
||
|
}
|
||
|
}
|
||
|
|
||
|
alignof_text = ALIGNOF(.text);
|
||
|
alignof_data = ALIGNOF(.data);
|