Automatic date update in version.in
[binutils-gdb.git] / ld / testsuite / ld-loongarch-elf / relr-relocs.ld
blobed83275b629b44bec5eb165d09bf9542b685b83e
1 /* Script for DT_RELR tests */
2 OUTPUT_ARCH(loongarch64)
3 ENTRY(_start)
4 SECTIONS
6         PROVIDE (__executable_start = 0x8000); . = 0x10000;
7         .text :
8         {
9                 *(.before)
10                 *(.text)
11                 *(.after)
12         } =0
13         . = 0x20000;
14         .got :
15         {
16                 *(.got)
17                 *(.got.plt)
18         }
19         . = 0x12340000;
20         .data :
21         {
22                 *(.data)
23         }