]> Git Repo - binutils.git/blobdiff - sim/configure.in
Regenerate simulator configure scripts; Remove d10v traps 1-3, Make 15 the system...
[binutils.git] / sim / configure.in
index 167966b0d446622b9d1d006eb0a46f730b7d273c..89bc21fb6ba332f5868a4e578698a24b19b8832b 100644 (file)
@@ -38,6 +38,7 @@ esac])
 # Assume simulator can be built with cc.
 # If the user passes --enable-sim built it regardless of $(CC).
 only_if_gcc=no
+extra_subdirs=common
 
 # WHEN ADDING ENTRIES TO THIS MATRIX:
 #  Make sure that the left side always has two dashes.  Otherwise you
@@ -46,9 +47,14 @@ only_if_gcc=no
 
 case "${target}" in
   arm*-*-*)            sim_target=arm ;;
-# start-sanitize-d10v
   d10v-*-*)            sim_target=d10v ;;
-# end-sanitize-d10v
+# start-sanitize-d30v
+  d30v-*-*)
+       sim_target=d30v
+       only_if_gcc=yes
+       extra_subdirs="${extra_subdirs} igen"
+       ;;
+# end-sanitize-d30v
   h8300*-*-*)          sim_target=h8300 ;;
   h8500-*-*)           sim_target=h8500 ;;
   mips*-*-*)
@@ -56,13 +62,22 @@ case "${target}" in
        sim_target=mips
        only_if_gcc=yes
        ;;
-  sh*-*-*)             sim_target=sh ;; 
+  mn10300*-*-*)
+       # The mn10300 simulator can only be compiled by gcc.
+       sim_target=mn10300
+       only_if_gcc=yes
+       ;;
+  mn10200*-*-*)
+       sim_target=mn10200
+       ;;
+  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
        # unless asked to.
        sim_target=ppc
        only_if_gcc=yes
+       #extra_subdirs="${extra_subdirs}"
        ;;
 # start-sanitize-v850
   v850-*-*)
@@ -73,6 +88,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 +118,10 @@ yes)
        ;;
 esac
 
-configdirs=${sim_target}
-AC_CONFIG_SUBDIRS($configdirs)
+if test x"${sim_target}" != xnone ; then
+       configdirs="${extra_subdirs} ${sim_target}"
+       AC_CONFIG_SUBDIRS($configdirs)
+fi
 
 AC_OUTPUT(Makefile)
 
This page took 0.024857 seconds and 4 git commands to generate.