From b49e4c689c4dc8e9c8da5b8f56d7ddf59e485d3b Mon Sep 17 00:00:00 2001 From: Hans-Christian Noren Egtvedt Date: Tue, 22 Apr 2025 14:41:19 +0200 Subject: binutils: add version 2.44 https://lists.gnu.org/archive/html/info-gnu/2025-02/msg00001.html Add the new version rebasing the patches we carry on top. Drop patches to gold, since this linker has been removed from upstream. Add a new Kconfig entry that removes visibility of enabling gold linker when selecting binutils version >= 2.44. Signed-off-by: Hans-Christian Noren Egtvedt --- .../2.44/0001-check_ldrunpath_length.patch | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 packages/binutils/2.44/0001-check_ldrunpath_length.patch (limited to 'packages/binutils/2.44/0001-check_ldrunpath_length.patch') diff --git a/packages/binutils/2.44/0001-check_ldrunpath_length.patch b/packages/binutils/2.44/0001-check_ldrunpath_length.patch new file mode 100644 index 00000000..69c9d76a --- /dev/null +++ b/packages/binutils/2.44/0001-check_ldrunpath_length.patch @@ -0,0 +1,29 @@ +From aad130ddadd19ae40e5405a7b9ddd5ae1ec138f0 Mon Sep 17 00:00:00 2001 +From: Chris Packham +Date: Mon, 8 Aug 2022 20:36:31 +1200 +Subject: [PATCH 1/8] check_ldrunpath_length + +--- + ld/ldelf.c | 4 ++++ + 1 file changed, 4 insertions(+) + +--- a/ld/ldelf.c ++++ b/ld/ldelf.c +@@ -1134,6 +1134,8 @@ ldelf_handle_dt_needed (struct elf_link_ + && command_line.rpath == NULL) + { + path = (const char *) getenv ("LD_RUN_PATH"); ++ if (path && *path == '\0') ++ path = NULL; + if (path + && ldelf_search_needed (path, &n, force, + is_linux, elfsize)) +@@ -1811,6 +1813,8 @@ ldelf_before_allocation (char *audit, ch + rpath = command_line.rpath; + if (rpath == NULL) + rpath = (const char *) getenv ("LD_RUN_PATH"); ++ if (rpath && *rpath == '\0') ++ rpath = NULL; + + for (abfd = link_info.input_bfds; abfd; abfd = abfd->link.next) + if (bfd_get_flavour (abfd) == bfd_target_elf_flavour) -- cgit v1.2.3