mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-15 04:31:49 +08:00
ea6c5ce90d
* ld-scripts/defined5.s: Use .text for "defined" section. * ld-scripts/defined5.t: Adjust.
8 lines
119 B
Raku
8 lines
119 B
Raku
defined = addr1;
|
|
SECTIONS {
|
|
.text : { *(.text) }
|
|
. = ALIGN (0x1000);
|
|
.data : { *(.data) }
|
|
addr1 = ADDR (.data);
|
|
}
|