mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-21 18:39:34 +08:00
Add .got.plt to testsuite/script_test_2.t
The .got.plt section must be placed right after the .got section. Otherwise, GOT offset will be wrong. PR gold/20246 * testsuite/script_test_2.t: Add .got.plt after .got.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2016-06-13 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
|
PR gold/20246
|
||||||
|
* testsuite/script_test_2.t: Add .got.plt after .got.
|
||||||
|
|
||||||
2016-06-10 Vladimir Radosavljevic <Vladimir.Radosavljevic@imgtec.com>
|
2016-06-10 Vladimir Radosavljevic <Vladimir.Radosavljevic@imgtec.com>
|
||||||
|
|
||||||
* mips.cc (struct Mips_abiflags): New struct.
|
* mips.cc (struct Mips_abiflags): New struct.
|
||||||
|
@ -33,6 +33,7 @@ SECTIONS
|
|||||||
. = ALIGN(0x100);
|
. = ALIGN(0x100);
|
||||||
.data : { *(.data) }
|
.data : { *(.data) }
|
||||||
.got : { *(.got .toc) }
|
.got : { *(.got .toc) }
|
||||||
|
.got.plt : { *(.got.plt) }
|
||||||
.bss : { *(.bss) }
|
.bss : { *(.bss) }
|
||||||
|
|
||||||
/* Now the real test. */
|
/* Now the real test. */
|
||||||
|
Reference in New Issue
Block a user