Andrew Geissler | 10fa149 | 2020-12-11 16:25:29 -0600 | [diff] [blame^] | 1 | From ef6fd1a60979ca1d9fc419ec840641019bc86ac2 Mon Sep 17 00:00:00 2001 |
| 2 | From: Mark Hatle <mark.hatle@xilinx.com> |
| 3 | Date: Mon, 30 Nov 2020 16:17:36 -0800 |
| 4 | Subject: [PATCH 32/52] ld/emulparams/elf64microblaze: Fix emulation generation |
| 5 | |
| 6 | Compilation fails when building ld-new with: |
| 7 | |
| 8 | ldemul.o:(.data.rel+0x820): undefined reference to `ld_elf64microblazeel_emulation' |
| 9 | ldemul.o:(.data.rel+0x828): undefined reference to `ld_elf64microblaze_emulation' |
| 10 | |
| 11 | The error appears to be that the elf64 files were referencing the elf32 emulation. |
| 12 | |
| 13 | Signed-off-by: Mark Hatle <mark.hatle@xilinx.com> |
| 14 | --- |
| 15 | ld/emulparams/elf64microblaze.sh | 2 +- |
| 16 | ld/emulparams/elf64microblazeel.sh | 2 +- |
| 17 | 2 files changed, 2 insertions(+), 2 deletions(-) |
| 18 | |
| 19 | Index: gdb-9.2/ld/emulparams/elf64microblaze.sh |
| 20 | =================================================================== |
| 21 | --- gdb-9.2.orig/ld/emulparams/elf64microblaze.sh |
| 22 | +++ gdb-9.2/ld/emulparams/elf64microblaze.sh |
| 23 | @@ -19,5 +19,5 @@ NOP=0x80000000 |
| 24 | #$@{RELOCATING+ PROVIDE (__stack = 0x7000);@} |
| 25 | #OTHER_RELOCATING_SECTIONS='PROVIDE (_stack = _end + 0x1000);' |
| 26 | |
| 27 | -TEMPLATE_NAME=elf32 |
| 28 | +TEMPLATE_NAME=elf |
| 29 | #GENERATE_SHLIB_SCRIPT=yes |
| 30 | Index: gdb-9.2/ld/emulparams/elf64microblazeel.sh |
| 31 | =================================================================== |
| 32 | --- gdb-9.2.orig/ld/emulparams/elf64microblazeel.sh |
| 33 | +++ gdb-9.2/ld/emulparams/elf64microblazeel.sh |
| 34 | @@ -19,5 +19,5 @@ NOP=0x80000000 |
| 35 | #$@{RELOCATING+ PROVIDE (__stack = 0x7000);@} |
| 36 | #OTHER_RELOCATING_SECTIONS='PROVIDE (_stack = _end + 0x1000);' |
| 37 | |
| 38 | -TEMPLATE_NAME=elf32 |
| 39 | +TEMPLATE_NAME=elf |
| 40 | #GENERATE_SHLIB_SCRIPT=yes |