From: David S. Miller Date: Tue, 15 Apr 2008 05:16:51 +0000 (+0000) Subject: toplevel/ X-Git-Tag: cgen-snapshot-20080501~75 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=3bb224d931bdc8fdf0285988dd7e9ccd388e3a11;p=pf3gnuchains%2Fpf3gnuchains4x.git 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. --- diff --git a/ChangeLog b/ChangeLog index bb9505865c..d2ae6374b8 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 b146180397..8d80fa26ee 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 1a18c61ece..06f401808d 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