diff options
author | Doug Evans <dje@google.com> | 1999-02-10 08:56:15 +0000 |
---|---|---|
committer | Doug Evans <dje@google.com> | 1999-02-10 08:56:15 +0000 |
commit | 2d84b54332304cacc149054a9ce0f500f34a568e (patch) | |
tree | bddbb3c28e521af37476cf78f768fdad61a5191e /sim | |
parent | 3ab32eae4d128f4640a075cf0c1ae7253a0a77d6 (diff) | |
download | gdb-2d84b54332304cacc149054a9ce0f500f34a568e.zip gdb-2d84b54332304cacc149054a9ce0f500f34a568e.tar.gz gdb-2d84b54332304cacc149054a9ce0f500f34a568e.tar.bz2 |
* configure.in (sparc*): Configure sparc subdir if --with-cgen or
--with-cgen-sim.
* configure: Rebuild.
Diffstat (limited to 'sim')
-rw-r--r-- | sim/configure.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sim/configure.in b/sim/configure.in index db35e31..2322071 100644 --- a/sim/configure.in +++ b/sim/configure.in @@ -118,7 +118,7 @@ case "${target}" in z8k*-*-*) sim_target=z8k ;; sparc64-*-*) only_if_gcc=yes - if test "x${with_cgen}" = xyes ; then + if test "x${with_cgen}" = xyes -o "x${with_cgen_sim}" = xyes ; then sim_target=sparc extra_subdirs="${extra_subdirs} testsuite" else @@ -128,7 +128,7 @@ case "${target}" in sparclite*-*-* | sparc86x*-*-*) # The SPARC simulator can only be compiled by gcc. only_if_gcc=yes - if test "x${with_cgen}" = xyes ; then + if test "x${with_cgen}" = xyes -o "x${with_cgen_sim}" = xyes ; then sim_target=sparc extra_subdirs="${extra_subdirs} testsuite" else @@ -138,7 +138,7 @@ case "${target}" in sparc*-*-*) # The SPARC simulator can only be compiled by gcc. only_if_gcc=yes - if test "x${with_cgen}" = xyes ; then + if test "x${with_cgen}" = xyes -o "x${with_cgen_sim}" = xyes ; then sim_target=sparc extra_subdirs="${extra_subdirs} testsuite" else |