From 822b8bf46be64f9055e3d4b944323881f102fd8d Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Mon, 21 Jan 2013 08:21:46 +0000 Subject: [PATCH] ld: enable new dtags by default for linux/gnu targets The "new" dtags options have been around for 14+ years now, so for Linux and GNU targets, enable them by default. Signed-off-by: Mike Frysinger --- ld/ChangeLog | 6 ++++++ ld/NEWS | 2 ++ ld/emultempl/elf32.em | 10 ++++++++++ 3 files changed, 18 insertions(+) diff --git a/ld/ChangeLog b/ld/ChangeLog index bf3d2109c0..d611f53ee8 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,9 @@ +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-19 H.J. Lu * Makefile.am (HOSTING_SCRT0): New. diff --git a/ld/NEWS b/ld/NEWS index 1e07605e00..6b30b2f873 100644 --- a/ld/NEWS +++ b/ld/NEWS @@ -4,6 +4,8 @@ * --enable-new-dtags no longer generates old dtags in addition to new dtags. +* For Linux/GNU targets, new dtags is now the default. + Changes in 2.23: * Enable compressed debug section feature for x86/x86_64 pe-coff. diff --git a/ld/emultempl/elf32.em b/ld/emultempl/elf32.em index 53d4e24d47..60611f9a48 100644 --- a/ld/emultempl/elf32.em +++ b/ld/emultempl/elf32.em @@ -105,6 +105,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*) + fragment <