diff options
author | Jim Wilson <wilson@tuliptree.org> | 2000-05-11 04:27:08 +0000 |
---|---|---|
committer | Jim Wilson <wilson@tuliptree.org> | 2000-05-11 04:27:08 +0000 |
commit | 2315914daec9a30008ed4e68a839b92f261b4935 (patch) | |
tree | 251aaec71dd11c0a21179909b058f084c939221e | |
parent | 0dadbba0df8779acb1ad0b516397f8afbf444740 (diff) | |
download | gdb-2315914daec9a30008ed4e68a839b92f261b4935.zip gdb-2315914daec9a30008ed4e68a839b92f261b4935.tar.gz gdb-2315914daec9a30008ed4e68a839b92f261b4935.tar.bz2 |
Add toplevel configure support for ia64-elf.
* configure.in (ia64*-*-elf*): Add gdb and friends to noconfigdirs.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | configure.in | 4 |
2 files changed, 8 insertions, 0 deletions
@@ -1,3 +1,7 @@ +Wed May 10 21:26:51 2000 Jim Wilson <wilson@cygnus.com> + + * configure.in (ia64*-*-elf*): Add gdb and friends to noconfigdirs. + 2000-05-08 Eli Zaretskii <eliz@is.elta.co.il> * djunpack.bat: Change the Sed script to replace @V@ in fnchange.lst diff --git a/configure.in b/configure.in index ca1b04f..7575072 100644 --- a/configure.in +++ b/configure.in @@ -669,6 +669,10 @@ case "${target}" in esac noconfigdirs="$noconfigdirs ld shellutils" ;; + ia64*-*-elf*) + # No gdb support yet. + noconfigdirs="$noconfigdirs tix readline mmalloc libgui itcl gdb" + ;; i[3456]86-*-coff | i[3456]86-*-elf) if [ x${is_cross_compiler} != xno ] ; then target_configdirs="${target_configdirs} target-libstub target-cygmon" |