diff options
author | Andreas K. Hüttel <dilfridge@gentoo.org> | 2021-08-17 22:01:35 +0200 |
---|---|---|
committer | Andreas K. Hüttel <dilfridge@gentoo.org> | 2021-08-17 22:01:35 +0200 |
commit | 8699e74a960289b51ace04e4fffde22d5344171b (patch) | |
tree | 2070e2a3bc50ef87dc3130b0acecec2e9ac3cebb /9999 | |
parent | XFAIL 15 broken ld.gold tests (diff) | |
download | binutils-patches-8699e74a960289b51ace04e4fffde22d5344171b.tar.gz binutils-patches-8699e74a960289b51ace04e4fffde22d5344171b.tar.bz2 binutils-patches-8699e74a960289b51ace04e4fffde22d5344171b.zip |
Enable new dtags via configure, not broken patch
Bug: https://bugs.gentoo.org/808787
Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
Diffstat (limited to '9999')
-rw-r--r-- | 9999/0005-Gentoo-ld-enable-new-dtags-by-default-for-linux-gnu-.patch | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/9999/0005-Gentoo-ld-enable-new-dtags-by-default-for-linux-gnu-.patch b/9999/0005-Gentoo-ld-enable-new-dtags-by-default-for-linux-gnu-.patch deleted file mode 100644 index c6e5299..0000000 --- a/9999/0005-Gentoo-ld-enable-new-dtags-by-default-for-linux-gnu-.patch +++ /dev/null @@ -1,49 +0,0 @@ -From f4ecba77ec1eb0576b8731c749336ea3889eba73 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Andreas=20K=2E=20H=C3=BCttel?= <dilfridge@gentoo.org> -Date: Sun, 13 Oct 2019 05:25:28 +0200 -Subject: [PATCH 5/6] Gentoo: ld: enable new dtags by default for linux/gnu - targets - -Original author: Mike Frysinger <vapier@gentoo.org> - -The "new" dtags options have been around for 14+ years now, so for Linux -and GNU targets, enable them by default. - -2012-01-21 Mike Frysinger <vapier@gentoo.org> - - * emultempl/elf32.em (gld${EMULATION_NAME}_before_parse): Set - link_info.new_dtags to TRUE for linux/gnu targets. - * NEWS: Mention new dtags default. - -2013-01-22 Roland McGrath <mcgrathr@google.com> - - * emultempl/elf32.em (gld${EMULATION_NAME}_before_parse): Set - new_dtags to TRUE for *-*-nacl* targets. ---- - ld/emultempl/elf.em | 10 ++++++++++ - 1 file changed, 10 insertions(+) - -diff --git a/ld/emultempl/elf.em b/ld/emultempl/elf.em -index bfaf8130a3e..c4c42b7371a 100644 ---- a/ld/emultempl/elf.em -+++ b/ld/emultempl/elf.em -@@ -81,6 +81,16 @@ gld${EMULATION_NAME}_before_parse (void) - input_flags.dynamic = ${DYNAMIC_LINK-true}; - config.has_shared = `if test -n "$GENERATE_SHLIB_SCRIPT" ; then echo true ; else echo false ; fi`; - config.separate_code = `if test "x${SEPARATE_CODE}" = xyes ; then echo true ; else echo false ; fi`; -+EOF -+ -+case ${target} in -+ *-*-linux-* | *-*-k*bsd*-* | *-*-gnu* | *-*-nacl*) -+ fragment <<EOF -+ link_info.new_dtags = true; -+EOF -+ ;; -+esac -+fragment <<EOF - link_info.check_relocs_after_open_input = true; - EOF - if test -n "$COMMONPAGESIZE"; then --- -2.31.1 - |