From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 64F041586A6 for ; Tue, 17 Aug 2021 20:07:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AD870E0871; Tue, 17 Aug 2021 20:07:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 86FE6E0871 for ; Tue, 17 Aug 2021 20:07:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5043A3408CF for ; Tue, 17 Aug 2021 20:07:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 936A37BD for ; Tue, 17 Aug 2021 20:07:32 +0000 (UTC) From: "Andreas K. Hüttel" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas K. Hüttel" Message-ID: <1629230495.8699e74a960289b51ace04e4fffde22d5344171b.dilfridge@gentoo> Subject: [gentoo-commits] proj/toolchain/binutils-patches:master commit in: 9999/ X-VCS-Repository: proj/toolchain/binutils-patches X-VCS-Files: 9999/0005-Gentoo-ld-enable-new-dtags-by-default-for-linux-gnu-.patch X-VCS-Directories: 9999/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas K. Hüttel X-VCS-Revision: 8699e74a960289b51ace04e4fffde22d5344171b X-VCS-Branch: master Date: Tue, 17 Aug 2021 20:07:32 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 321dba32-d823-43da-ba88-b838cdafd786 X-Archives-Hash: 8d2a6464a2acb7bce334df87fe767c37 commit: 8699e74a960289b51ace04e4fffde22d5344171b Author: Andreas K. Hüttel gentoo org> AuthorDate: Tue Aug 17 20:01:35 2021 +0000 Commit: Andreas K. Hüttel gentoo org> CommitDate: Tue Aug 17 20:01:35 2021 +0000 URL: https://gitweb.gentoo.org/proj/toolchain/binutils-patches.git/commit/?id=8699e74a Enable new dtags via configure, not broken patch Bug: https://bugs.gentoo.org/808787 Signed-off-by: Andreas K. Hüttel gentoo.org> ...nable-new-dtags-by-default-for-linux-gnu-.patch | 49 ---------------------- 1 file changed, 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?= -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 - -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 - - * 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 - - * 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 <