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.
This commit is contained in:
parent
eabd7de028
commit
e163fe2579
|
@ -1,3 +1,8 @@
|
||||||
|
2008-04-14 David S. Miller <davem@davemloft.net>
|
||||||
|
|
||||||
|
* configure.ac: Add sparc*-*-* to gold supported targets.
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2008-04-14 Ben Elliston <bje@au.ibm.com>
|
2008-04-14 Ben Elliston <bje@au.ibm.com>
|
||||||
|
|
||||||
* config.sub, config.guess: Update from upstream sources.
|
* config.sub, config.guess: Update from upstream sources.
|
||||||
|
|
|
@ -2048,7 +2048,7 @@ if test "${ENABLE_GOLD}" = "yes"; then
|
||||||
if test "$is_elf" = "yes"; then
|
if test "$is_elf" = "yes"; then
|
||||||
# Check for target supported by gold.
|
# Check for target supported by gold.
|
||||||
case "${target}" in
|
case "${target}" in
|
||||||
i?86-*-* | x86_64-*-*)
|
i?86-*-* | x86_64-*-* | sparc*-*-*)
|
||||||
configdirs="`echo " ${configdirs} " | sed -e 's/ ld / gold /'`"
|
configdirs="`echo " ${configdirs} " | sed -e 's/ ld / gold /'`"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
|
@ -316,7 +316,7 @@ if test "${ENABLE_GOLD}" = "yes"; then
|
||||||
if test "$is_elf" = "yes"; then
|
if test "$is_elf" = "yes"; then
|
||||||
# Check for target supported by gold.
|
# Check for target supported by gold.
|
||||||
case "${target}" in
|
case "${target}" in
|
||||||
i?86-*-* | x86_64-*-*)
|
i?86-*-* | x86_64-*-* | sparc*-*-*)
|
||||||
configdirs="`echo " ${configdirs} " | sed -e 's/ ld / gold /'`"
|
configdirs="`echo " ${configdirs} " | sed -e 's/ ld / gold /'`"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
Loading…
Reference in New Issue