blob: 94e14bde36df2e38ac3a42172e6940cc92a4d438 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
SECTIONS
{
def1 = DEFINED(foo) ? 0x10 : 0x20;
def2 = def1;
. = 0x10001;
foo = .;
. += 0x200;
bar = .;
. = ALIGN (4);
frob = .;
. = 0x10000;
.text : { *(.text) }
}
|