diff options
author | Andrew Burgess <aburgess@redhat.com> | 2022-10-19 12:00:42 +0100 |
---|---|---|
committer | Andrew Burgess <aburgess@redhat.com> | 2022-10-19 12:12:37 +0100 |
commit | 6d6ae7c23dd59fe16f3e366e969b927d97fe5e01 (patch) | |
tree | a58e9e7dbab97ec20faea84a351b05ae23c3db02 /bfd/configure | |
parent | c60b3806799abf1d7f6cf5108a1b0e733a950b13 (diff) | |
download | binutils-6d6ae7c23dd59fe16f3e366e969b927d97fe5e01.zip binutils-6d6ae7c23dd59fe16f3e366e969b927d97fe5e01.tar.gz binutils-6d6ae7c23dd59fe16f3e366e969b927d97fe5e01.tar.bz2 |
bfd: fix undefined references to aarch64_pe_le_vec
After commit:
commit c60b3806799abf1d7f6cf5108a1b0e733a950b13
Date: Wed Oct 19 10:57:12 2022 +0200
aarch64-pe support for LD, GAS and BFD
It appears that bfd/Makefile.in and bfd/configure were not regenerated
correctly. The differences in the configure file are only whitespace,
but in Makefile.in a critical reference to pe-aarch64.lo was missing.
Diffstat (limited to 'bfd/configure')
-rwxr-xr-x | bfd/configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/configure b/bfd/configure index bae9d17..1c17606 100755 --- a/bfd/configure +++ b/bfd/configure @@ -13604,7 +13604,7 @@ do aarch64_elf64_le_cloudabi_vec) tb="$tb elf64-aarch64.lo elfxx-aarch64.lo elf-ifunc.lo elf64.lo $elf"; target_size=64 ;; aarch64_mach_o_vec) tb="$tb mach-o-aarch64.lo"; target_size=64 ;; aarch64_pei_le_vec) tb="$tb pei-aarch64.lo pe-aarch64igen.lo $coff"; target_size=64 ;; - aarch64_pe_le_vec) tb="$tb pe-aarch64.lo pe-aarch64igen.lo $coff"; target_size=64 ;; + aarch64_pe_le_vec) tb="$tb pe-aarch64.lo pe-aarch64igen.lo $coff"; target_size=64 ;; alpha_ecoff_le_vec) tb="$tb coff-alpha.lo ecoff.lo $ecoff"; target_size=64 ;; alpha_elf64_vec) tb="$tb elf64-alpha.lo elf64.lo $elf"; target_size=64 ;; alpha_elf64_fbsd_vec) tb="$tb elf64-alpha.lo elf64.lo $elf"; target_size=64 ;; |