diff options
author | cvs2svn <> | 2000-06-03 01:57:30 +0000 |
---|---|---|
committer | cvs2svn <> | 2000-06-03 01:57:30 +0000 |
commit | 4db0b146b8a3e306842d17ab19416dab81af9331 (patch) | |
tree | 3995b8e6abbe11d4da64f3b69d881f319ceb7ec9 /configure.in | |
parent | 80546f570d6f610bd7ea29b604d2e60312868a8a (diff) | |
download | newlib-gdb-premipsmulti-2000-06-06-branch.zip newlib-gdb-premipsmulti-2000-06-06-branch.tar.gz newlib-gdb-premipsmulti-2000-06-06-branch.tar.bz2 |
This commit was manufactured by cvs2svn to create branch 'gdb-gdb-premipsmulti-2000-06-06-branchpointgdb-premipsmulti-2000-06-06-branch
premipsmulti-2000-06-06-branch'.
Sprout from gdb_5_0-2000-04-10-branch 2000-04-09 12:17:37 UTC cvs2svn 'This commit was manufactured by cvs2svn to create branch'
Cherrypick from master 2000-06-03 01:57:29 UTC Alan Modra <modra@gmail.com> 'Fix name clash':
ChangeLog
MAINTAINERS
Makefile.in
config.guess
config.sub
configure
configure.in
djunpack.bat
include/ChangeLog
include/bfdlink.h
include/coff/ChangeLog
include/coff/ia64.h
include/coff/internal.h
include/coff/pe.h
include/coff/rs6k64.h
include/coff/ti.h
include/dis-asm.h
include/elf/ChangeLog
include/elf/common.h
include/elf/ia64.h
include/elf/mips.h
include/elf/mn10300.h
include/elf/reloc-macros.h
include/filenames.h
include/floatformat.h
include/opcode/ChangeLog
include/opcode/cgen.h
include/opcode/d10v.h
include/opcode/h8300.h
include/opcode/hppa.h
include/opcode/i386.h
include/opcode/ia64.h
include/opcode/ppc.h
include/opcode/tic54x.h
ltmain.sh
texinfo/texinfo.tex
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/configure.in b/configure.in index ca1b04f..c14f135 100644 --- a/configure.in +++ b/configure.in @@ -656,7 +656,8 @@ case "${target}" in ;; hppa*-*-*elf* | \ hppa*-*-linux-gnu* | \ - hppa*-*-lites*) + hppa*-*-lites* | \ + hppa*64*-*-*) # Do configure ld/binutils/gas for the above cases. ;; hppa*-*-*) @@ -669,6 +670,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" @@ -1047,6 +1052,9 @@ if [ x${shared} = xyes ]; then i[3456]86-*) target_makefile_frag="${target_makefile_frag} config/mt-x86pic" ;; + powerpc*-*-aix*) + # We don't want -fPIC on AIX. + ;; powerpc*-*) target_makefile_frag="${target_makefile_frag} config/mt-ppcpic" ;; |