mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-11 19:49:32 +00:00
8 lines
161 B
Perl
8 lines
161 B
Perl
|
SECTIONS {
|
||
|
.text : { *(.text) }
|
||
|
.data : { *(.data) }
|
||
|
.bss : { *(.bss) *(COMMON) }
|
||
|
}
|
||
|
value1 = DEFINED (defined) ? 1 : 2;
|
||
|
value2 = DEFINED (undefined) ? 1 : 2;
|