diff options
author | Hans-Christian Noren Egtvedt <egtvedt@samfundet.no> | 2025-04-22 14:41:19 +0200 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2025-04-30 09:34:18 +1200 |
commit | b49e4c689c4dc8e9c8da5b8f56d7ddf59e485d3b (patch) | |
tree | 17933f7258d92082c9fdeb4b07da6355f61e737e /packages/binutils/2.44/0001-check_ldrunpath_length.patch | |
parent | 179fe2d5df7d4c5acc4cbaaf4b4007af73807025 (diff) | |
download | crosstool-ng-b49e4c689c4dc8e9c8da5b8f56d7ddf59e485d3b.tar.gz crosstool-ng-b49e4c689c4dc8e9c8da5b8f56d7ddf59e485d3b.tar.bz2 crosstool-ng-b49e4c689c4dc8e9c8da5b8f56d7ddf59e485d3b.zip |
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 <egtvedt@samfundet.no>
Diffstat (limited to 'packages/binutils/2.44/0001-check_ldrunpath_length.patch')
-rw-r--r-- | packages/binutils/2.44/0001-check_ldrunpath_length.patch | 29 |
1 files changed, 29 insertions, 0 deletions
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 <judge.packham@gmail.com> +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) |