diff options
author | Richard Sandiford <rsandifo@nildram.co.uk> | 2007-09-14 14:51:36 +0000 |
---|---|---|
committer | Richard Sandiford <rsandifo@nildram.co.uk> | 2007-09-14 14:51:36 +0000 |
commit | 51c2fce35928da32e04debb6b5d24339316febf0 (patch) | |
tree | 2b762dcab18f072d62e8db8a5a82727de5159c4b | |
parent | 6f5b79cef16f5c4f5a28e3d5057264e3bc6c5ff0 (diff) | |
download | gdb-51c2fce35928da32e04debb6b5d24339316febf0.tar.gz |
* configure.ac (mips*-sde-elf*): New stanza. Add target-libiberty
to $skipdirs and only disable gprof for newlib. Use the normal
mips*-elf* handling in other respects.
* configure: Regnerate.
-rw-r--r-- | ChangeLog | 7 | ||||
-rwxr-xr-x | configure | 8 | ||||
-rw-r--r-- | configure.ac | 8 |
3 files changed, 23 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index 57beec50ea6..6c4b91747ae 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2007-09-14 Richard Sandiford <richard@codesourcery.com> + + * configure.ac (mips*-sde-elf*): New stanza. Add target-libiberty + to $skipdirs and only disable gprof for newlib. Use the normal + mips*-elf* handling in other respects. + * configure: Regnerate. + 2007-09-12 David Daney <ddaney@avtrex.com> * configure.ac: Remove mips64*-*-linux* noconfigdirs section, thus diff --git a/configure b/configure index 11c91e91450..91f3168a575 100755 --- a/configure +++ b/configure @@ -2506,6 +2506,14 @@ case "${target}" in m68k-apollo-*) noconfigdirs="$noconfigdirs ld binutils gprof target-libgloss ${libgcj}" ;; + mips*-sde-elf*) + skipdirs="$skipdirs target-libiberty" + noconfigdirs="$noconfigdirs ${libgcj}" + if test x$with_newlib = xyes; then + noconfigdirs="$noconfigdirs gprof" + fi + libgloss_dir=mips + ;; mips*-*-irix5*) noconfigdirs="$noconfigdirs gprof target-libgloss ${libgcj}" ;; diff --git a/configure.ac b/configure.ac index 74238bf2de2..a1772c07371 100644 --- a/configure.ac +++ b/configure.ac @@ -782,6 +782,14 @@ case "${target}" in m68k-apollo-*) noconfigdirs="$noconfigdirs ld binutils gprof target-libgloss ${libgcj}" ;; + mips*-sde-elf*) + skipdirs="$skipdirs target-libiberty" + noconfigdirs="$noconfigdirs ${libgcj}" + if test x$with_newlib = xyes; then + noconfigdirs="$noconfigdirs gprof" + fi + libgloss_dir=mips + ;; mips*-*-irix5*) noconfigdirs="$noconfigdirs gprof target-libgloss ${libgcj}" ;; |