diff options
Diffstat (limited to 'ld/testsuite/ld-vax-elf/plt-local-lib.ld')
-rw-r--r-- | ld/testsuite/ld-vax-elf/plt-local-lib.ld | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/ld/testsuite/ld-vax-elf/plt-local-lib.ld b/ld/testsuite/ld-vax-elf/plt-local-lib.ld new file mode 100644 index 0000000..4a0b44c --- /dev/null +++ b/ld/testsuite/ld-vax-elf/plt-local-lib.ld @@ -0,0 +1,18 @@ +SECTIONS +{ + . = 0; + .hash : { *(.hash) } + .dynsym : { *(.dynsym) } + .dynstr : { *(.dynstr) } + .rela.plt : { *(.rela.plt) } + + . = 0x1000; + .plt : { *(.plt) } + + . = 0x2000; + .text : { *(.text) } + + . = 0x3000; + .dynamic : { *(.dynamic) } + .got : { *(.got.plt) } +} |