]> git.ipfire.org Git - thirdparty/glibc.git/blob - elf/tst-ro-dynamic-mod.map
test-container: Fix "unused code" warnings on HURD
[thirdparty/glibc.git] / elf / tst-ro-dynamic-mod.map
1 SECTIONS
2 {
3 . = SIZEOF_HEADERS;
4 .dynamic : { *(.dynamic) } :text :dynamic
5 .rodata : { *(.data*) *(.bss*) } :text
6 /DISCARD/ : {
7 *(.note.gnu.property)
8 }
9 .note : { *(.note.*) } :text :note
10 }
11 PHDRS
12 {
13 text PT_LOAD FLAGS(5) FILEHDR PHDRS;
14 dynamic PT_DYNAMIC FLAGS(4);
15 note PT_NOTE FLAGS(4);
16 }