mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 03:51:15 +08:00
8 lines
161 B
Raku
8 lines
161 B
Raku
SECTIONS {
|
|
.text : { *(.text) }
|
|
.data : { *(.data) }
|
|
.bss : { *(.bss) *(COMMON) }
|
|
}
|
|
value1 = DEFINED (defined) ? 1 : 2;
|
|
value2 = DEFINED (undefined) ? 1 : 2;
|