diff options
author | Kim Knuttila <krk@cygnus> | 1995-09-27 14:49:37 +0000 |
---|---|---|
committer | Kim Knuttila <krk@cygnus> | 1995-09-27 14:49:37 +0000 |
commit | 85cc2190f50d7f92f2813aecf7325dadeabd2a93 (patch) | |
tree | 29f19caafa62b899d3aa568b5ef2d0112d44f2e5 /gas/configure.in | |
parent | 1f7cc434dc2010f034c7f68b10fa8754bcf1b09d (diff) | |
download | gdb-85cc2190f50d7f92f2813aecf7325dadeabd2a93.zip gdb-85cc2190f50d7f92f2813aecf7325dadeabd2a93.tar.gz gdb-85cc2190f50d7f92f2813aecf7325dadeabd2a93.tar.bz2 |
Configure support for ppc/PE
Diffstat (limited to 'gas/configure.in')
-rw-r--r-- | gas/configure.in | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/gas/configure.in b/gas/configure.in index 86c4b89..b5ca7f1 100644 --- a/gas/configure.in +++ b/gas/configure.in @@ -233,6 +233,18 @@ changequote([,])dnl *) targ=mips-lit ;; esac ;; + ppc-*-pe) fmt=coff em=pe + case "$endian" in + big) targ=ppc-big ;; + *) targ=ppc-lit ;; + esac + ;; + ppc-*-winnt*) fmt=coff em=pe + case "$endian" in + big) targ=ppc-big ;; + *) targ=ppc-lit ;; + esac + ;; ppc-*-aix*) fmt=coff ;; ppc-*-elf* | ppc-*-eabi* | ppc-*-sysv4*) fmt=elf @@ -294,6 +306,7 @@ changequote([,])dnl mips-*) bfd_gas=yes ;; ns32k-*) bfd_gas=yes ;; ppc-*) bfd_gas=yes ;; + powerpc-*) bfd_gas=yes ;; sparc-*) bfd_gas=yes ;; *-elf) bfd_gas=yes ;; *-ecoff) bfd_gas=yes ;; |