diff options
author | Olcay Korkmaz <nuke_mania@hotmail.com> | 2024-09-17 00:28:21 +0300 |
---|---|---|
committer | Robert Marko <robimarko@gmail.com> | 2024-09-17 11:30:26 +0200 |
commit | 802be2457f41cebcf8a48b90d26d609009328294 (patch) | |
tree | 83d128ef392a8fe771b8e3c8ad1618021e50c805 /toolchain/binutils/patches/2.43.1/400-mips_no_dynamic_linking_sym.patch | |
parent | 7e1d0925526a104364630b7af5355b799ef884d9 (diff) | |
download | openwrt-802be2457f41cebcf8a48b90d26d609009328294.tar.gz openwrt-802be2457f41cebcf8a48b90d26d609009328294.tar.bz2 openwrt-802be2457f41cebcf8a48b90d26d609009328294.zip |
toolchain: binutils: add support for 2.43.1
Release notes:
https://lists.gnu.org/archive/html/info-gnu/2024-08/msg00003.html
No need to refresh patches
Test device: Xiaomi ax3600
Signed-off-by: Olcay Korkmaz <nuke_mania@hotmail.com>
Link: https://github.com/openwrt/openwrt/pull/16405
Signed-off-by: Robert Marko <robimarko@gmail.com>
Diffstat (limited to 'toolchain/binutils/patches/2.43.1/400-mips_no_dynamic_linking_sym.patch')
-rw-r--r-- | toolchain/binutils/patches/2.43.1/400-mips_no_dynamic_linking_sym.patch | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/toolchain/binutils/patches/2.43.1/400-mips_no_dynamic_linking_sym.patch b/toolchain/binutils/patches/2.43.1/400-mips_no_dynamic_linking_sym.patch new file mode 100644 index 0000000000..d0cc7ddc69 --- /dev/null +++ b/toolchain/binutils/patches/2.43.1/400-mips_no_dynamic_linking_sym.patch @@ -0,0 +1,18 @@ +--- a/bfd/elfxx-mips.c ++++ b/bfd/elfxx-mips.c +@@ -8161,6 +8161,7 @@ _bfd_mips_elf_create_dynamic_sections (b + + name = SGI_COMPAT (abfd) ? "_DYNAMIC_LINK" : "_DYNAMIC_LINKING"; + bh = NULL; ++ if (0) { + if (!(_bfd_generic_link_add_one_symbol + (info, abfd, name, BSF_GLOBAL, bfd_abs_section_ptr, 0, + NULL, false, get_elf_backend_data (abfd)->collect, &bh))) +@@ -8173,6 +8174,7 @@ _bfd_mips_elf_create_dynamic_sections (b + + if (! bfd_elf_link_record_dynamic_symbol (info, h)) + return false; ++ } + + if (! mips_elf_hash_table (info)->use_rld_obj_head) + { |