mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-09 04:21:49 +08:00
9 lines
153 B
Perl
9 lines
153 B
Perl
|
SECTIONS {
|
||
|
.text : { *(.text) }
|
||
|
.data : { *(.data) }
|
||
|
.bss : { *(.bss) *(COMMON) }
|
||
|
}
|
||
|
sym1 = 0x42;
|
||
|
sym2 = 0x43;
|
||
|
defined = DEFINED (sym1) ? sym1 : sym2;
|