import gdb-1999-10-04 snapshot
[deliverable/binutils-gdb.git] / sim / configure.in
index 5e316da9ecebe209f3401e2fe788c4be8e2d03a6..ce47feda2f413d331fee20981898c061775846da 100644 (file)
@@ -47,9 +47,11 @@ extra_subdirs=common
 #  convention, else the table becomes a real mess to understand and maintain.
 
 case "${target}" in
-  arm*-*-*)            sim_target=arm ;;
+  arm*-*-* | thumb*-*-*)
+       sim_target=arm
+       extra_subdirs="${extra_subdirs} testsuite"
+       ;;
   strongarm*-*-*)      sim_target=arm ;;
-  thumb*-*-*)           sim_target=arm ;;
   d10v-*-*)            sim_target=d10v ;;
   d30v-*-*)
        sim_target=d30v
@@ -61,6 +63,7 @@ case "${target}" in
   h8500-*-*)           sim_target=h8500 ;;
   i960-*-*)            sim_target=i960 ;;
   m32r-*-*)            sim_target=m32r ;;
+  mcore-*-*)           sim_target=mcore ;;
   mips*-*-*)
        # The MIPS simulator can only be compiled by gcc.
        sim_target=mips
@@ -111,42 +114,25 @@ case "${target}" in
   z8k*-*-*)            sim_target=z8k ;;
   sparc64-*-*)
        only_if_gcc=yes
-       if test "x${with_cgen}" = xyes -o "x${with_cgen_sim}" = xyes ; then
-               sim_target=sparc
-               extra_subdirs="${extra_subdirs} testsuite"
-       else
-               sim_target=none # Don't build erc32 if sparc64.
-       fi
+       sim_target=none # Don't build erc32 if sparc64.
        ;;
   sparclite*-*-* | sparc86x*-*-*)
        # The SPARC simulator can only be compiled by gcc.
        only_if_gcc=yes
-       if test "x${with_cgen}" = xyes -o "x${with_cgen_sim}" = xyes ; then
-               sim_target=sparc
-               extra_subdirs="${extra_subdirs} testsuite"
-       else
-               sim_target=erc32
-       fi
+       sim_target=erc32
        ;;
   sparc*-*-*)
        # The SPARC simulator can only be compiled by gcc.
        only_if_gcc=yes
-       if test "x${with_cgen}" = xyes -o "x${with_cgen_sim}" = xyes ; then
-               sim_target=sparc
-               extra_subdirs="${extra_subdirs} testsuite"
-       else
-               # Unfortunately erc32 won't build on many hosts, so only enable
-               # it if the user really really wants it.
-               only_if_enabled=yes
-               sim_target=erc32
-       fi
+       # Unfortunately erc32 won't build on many hosts, so only enable
+       # it if the user really really wants it.
+       only_if_enabled=yes
+       sim_target=erc32
        ;;
   *)                   sim_target=none ;;
 esac
 
 
-
-
 # Is there a testsuite directory for the target?
 testdir=`echo ${target} | sed -e 's/-.*-/-/'`
 if test -r ${srcdir}/testsuite/${testdir}/configure ; then
This page took 0.023638 seconds and 4 git commands to generate.