diff options
author | Rob Savoye <rob@cygnus> | 1996-05-22 18:12:32 +0000 |
---|---|---|
committer | Rob Savoye <rob@cygnus> | 1996-05-22 18:12:32 +0000 |
commit | d46637152cfbd15fce6ee39059aa06139900814a (patch) | |
tree | fea51fa2b67a89150a50e8eb54aff3ab5bb63d0b /sim/configure.in | |
parent | 3d6ee1b96111c779e2b6a0ea35eb30e683a63be4 (diff) | |
download | gdb-d46637152cfbd15fce6ee39059aa06139900814a.zip gdb-d46637152cfbd15fce6ee39059aa06139900814a.tar.gz gdb-d46637152cfbd15fce6ee39059aa06139900814a.tar.bz2 |
* configure.in: Only built erc32 simulator on Unix hosts as it
uses pseudo ttys.
* configure: Regenerated with autoconf 2.8.
Diffstat (limited to 'sim/configure.in')
-rw-r--r-- | sim/configure.in | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sim/configure.in b/sim/configure.in index db37122..44e2757 100644 --- a/sim/configure.in +++ b/sim/configure.in @@ -51,7 +51,12 @@ case "${target}" in powerpc*-*-eabi*) if test x"$powerpc_sim" = x"yes"; then sim_target=ppc; fi ;; w65-*-*) sim_target=w65 ;; z8k*-*-*) sim_target=z8k ;; - sparc*-*-*) sim_target=erc32 ;; + sparc*-*-*) case "${host}" in # don't build for non Unix systems + *-*-go32) sim_target=none ;; + *-*-winnt) sim_target=none ;; + *-*-cygwin32) sim_target=none ;; + *) sim_target=erc32 ;; + esac ;; *) sim_target=none ;; esac |