* m32r/tm-m32r.h (TARGET_M32R): Define, for wingdb.
[deliverable/binutils-gdb.git] / sim / configure.in
index 167966b0d446622b9d1d006eb0a46f730b7d273c..6e8fb7341ad84570c10f07c9c07478973ad2f782 100644 (file)
@@ -56,7 +56,17 @@ case "${target}" in
        sim_target=mips
        only_if_gcc=yes
        ;;
-  sh*-*-*)             sim_target=sh ;; 
+  mn10200*-*-*)
+       # The mn10200 simulator can only be compiled by gcc.
+       sim_target=mn10200
+       only_if_gcc=yes
+       ;;
+  mn10300*-*-*)
+       # The mn10300 simulator can only be compiled by gcc.
+       sim_target=mn10300
+       only_if_gcc=yes
+       ;;
+  sh*-*-*)             sim_target=sh ;;
   powerpc*-*-eabi* | powerpc*-*-solaris* | powerpc*-*-sysv4* | powerpc*-*-elf* | powerpc*-*-linux* )
        # The PowerPC simulator uses the GCC extension long long as well as
        # ANSI prototypes, so don't enable it for random host compilers
@@ -73,6 +83,9 @@ case "${target}" in
 # end-sanitize-v850
   w65-*-*)             sim_target=w65 ;;
   z8k*-*-*)            sim_target=z8k ;;
+  sparc64-*-*)
+       sim_target=none # Don't build erc32 if sparc64.
+       ;;
   sparc*-*-*)
        # The SPARC simulator can only be compiled by gcc.
        sim_target=erc32
@@ -100,8 +113,10 @@ yes)
        ;;
 esac
 
-configdirs=${sim_target}
-AC_CONFIG_SUBDIRS($configdirs)
+if test x"${sim_target}" != xnone ; then
+       configdirs="common ${sim_target}"
+       AC_CONFIG_SUBDIRS($configdirs)
+fi
 
 AC_OUTPUT(Makefile)
 
This page took 0.023804 seconds and 4 git commands to generate.