mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-03 04:12:10 +08:00
9b17aab627
* ld-scripts/cross1.t: Add .hash, .dynstr and .dynsym sections to script.
12 lines
222 B
Raku
12 lines
222 B
Raku
NOCROSSREFS ( .text .data )
|
|
SECTIONS
|
|
{
|
|
.dynsym : { *(.dynsym) }
|
|
.dynstr : { *(.dynstr) }
|
|
.hash : { *(.hash) }
|
|
.toc : { *(.toc) }
|
|
.opd : { *(.opd) }
|
|
.text : { tmpdir/cross1.o }
|
|
.data : { tmpdir/cross2.o }
|
|
}
|