allwinner_a64/android/toolchain/binutils/binutils-2.25/ld/testsuite/ld-scripts/assign-loc.t
2018-08-08 20:10:12 +08:00

17 lines
156 B
Perl

SECTIONS
{
. = 0x2000 ;
_start = .;
HEAP_SIZE = 0x100;
.heap : {
. = HEAP_SIZE;
. = ALIGN(4);
}
_end = .;
/DISCARD/ : { *(*) }
}