From e163fe2579e4a46757b208e84b0f73c7bbfb582a Mon Sep 17 00:00:00 2001 From: "David S. Miller" Date: Tue, 15 Apr 2008 05:16:51 +0000 Subject: [PATCH] toplevel/ * configure.ac: Add sparc*-*-* to gold supported targets. * configure: Regenerate. gold/ * sparc.cc: New file. * Makefile.am (TARGETSOURCES): Add sparc.cc (ALL_TARGETOBJS): Add sparc.$(OBJEXT) * configure.tgt: Document targ_extra_size and targ_extra_big_endian. Add entries for sparc-* and sparc64-*. * configure.ac: Handle targ_extra_size and targ_extra_big_endian. * Makefile.in: Rebuild. * configure: Likewise. * po/POTFILES.in: Likewise. * po/gold.pot: Likewise. --- ChangeLog | 5 +++++ configure | 2 +- configure.ac | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index bb9505865..d2ae6374b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-04-14 David S. Miller + + * configure.ac: Add sparc*-*-* to gold supported targets. + * configure: Regenerate. + 2008-04-14 Ben Elliston * config.sub, config.guess: Update from upstream sources. diff --git a/configure b/configure index b14618039..8d80fa26e 100755 --- a/configure +++ b/configure @@ -2048,7 +2048,7 @@ if test "${ENABLE_GOLD}" = "yes"; then if test "$is_elf" = "yes"; then # Check for target supported by gold. case "${target}" in - i?86-*-* | x86_64-*-*) + i?86-*-* | x86_64-*-* | sparc*-*-*) configdirs="`echo " ${configdirs} " | sed -e 's/ ld / gold /'`" ;; esac diff --git a/configure.ac b/configure.ac index 1a18c61ec..06f401808 100644 --- a/configure.ac +++ b/configure.ac @@ -316,7 +316,7 @@ if test "${ENABLE_GOLD}" = "yes"; then if test "$is_elf" = "yes"; then # Check for target supported by gold. case "${target}" in - i?86-*-* | x86_64-*-*) + i?86-*-* | x86_64-*-* | sparc*-*-*) configdirs="`echo " ${configdirs} " | sed -e 's/ ld / gold /'`" ;; esac