Update release readme after making 2.43.1 release
[binutils-gdb.git] / ld / testsuite / ld-elf / note-3.t
blob30ce59f93b50e88cdbdaba6f28cfd00814f3d44b
1 PHDRS
3   text PT_LOAD FILEHDR PHDRS ;
4   note PT_NOTE;
6 SECTIONS
8   . = . + SIZEOF_HEADERS ;
9   .text : { *(.text) *(.rodata) } :text
10   .note : { *(.note) } :note :text
12   /* BUG:  This linker script is broken here.  It has not reset the
13      output segment for the following sections, so they are all
14      treated as notes...   */
15   
16   .hash : { *(.hash) }
17   .gnu.hash : { *(.gnu.hash) }
18   
19   .dynstr : { *(.dynstr) }
20   .dynsym : { *(.dynsym) }
21   .got : { *(.got .toc) *(.igot) }
22   .got.plt : { *(.got.plt) *(.igot.plt) }
23   /DISCARD/ : { *(*) }