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/0004-sysroot.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/0004-sysroot.patch')
-rw-r--r-- | packages/binutils/2.44/0004-sysroot.patch | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/packages/binutils/2.44/0004-sysroot.patch b/packages/binutils/2.44/0004-sysroot.patch new file mode 100644 index 00000000..1cf3f673 --- /dev/null +++ b/packages/binutils/2.44/0004-sysroot.patch @@ -0,0 +1,45 @@ +From 880742786662b8adc996cc639d123d1884559344 Mon Sep 17 00:00:00 2001 +From: Sven Rebhan <odinshorse@googlemail.com> +Date: Mon, 8 Aug 2022 20:46:29 +1200 +Subject: [PATCH 6/8] sysroot + +Always try to prepend the sysroot prefix to absolute filenames first. + +http://bugs.gentoo.org/275666 +http://sourceware.org/bugzilla/show_bug.cgi?id=10340 + +Signed-off-by: Sven Rebhan <odinshorse@googlemail.com> +--- + ld/ldfile.c | 11 +++++++++-- + 1 file changed, 9 insertions(+), 2 deletions(-) + +--- a/ld/ldfile.c ++++ b/ld/ldfile.c +@@ -569,18 +569,25 @@ ldfile_open_file_search (const char *arc + directory first. */ + if (!entry->flags.maybe_archive) + { +- if (entry->flags.sysrooted && IS_ABSOLUTE_PATH (entry->filename)) ++ /* For absolute pathnames, try to always open the file in the ++ sysroot first. If this fails, try to open the file at the ++ given location. */ ++ entry->flags.sysrooted = is_sysrooted_pathname (entry->filename); ++ if (!entry->flags.sysrooted && IS_ABSOLUTE_PATH (entry->filename) ++ && ld_sysroot) + { + char *name = concat (ld_sysroot, entry->filename, + (const char *) NULL); + if (ldfile_try_open_bfd (name, entry)) + { + entry->filename = name; ++ entry->flags.sysrooted = true; + return true; + } + free (name); + } +- else if (ldfile_try_open_bfd (entry->filename, entry)) ++ ++ if (ldfile_try_open_bfd (entry->filename, entry)) + return true; + + if (IS_ABSOLUTE_PATH (entry->filename)) |