* configure.ac: Check for memmem declaration.
[deliverable/binutils-gdb.git] / sim / configure.ac
index dae2687cd8bd87d50c01d6eb48d3d71ca17e859a..286cd41c6702940ffd1241f67a363bb4e5b1937e 100644 (file)
@@ -23,6 +23,8 @@ else
   CC_FOR_BUILD=gcc
 fi
 AC_SUBST(CC_FOR_BUILD)
+CFLAGS_FOR_BUILD=${CFLAGS_FOR_BUILD-${CFLAGS}}
+AC_SUBST(CFLAGS_FOR_BUILD)
 
 # If a cpu ever has more than one simulator to choose from, use
 # --enable-sim=... to choose.
@@ -42,13 +44,20 @@ esac])
 
 if test "${enable_sim}" != no; then
    testsuite=no
-   common=no
+   common=yes
    igen=no
    case "${target}" in
        arm*-*-* | thumb*-*-* | strongarm*-*-* | xscale-*-*)
            AC_CONFIG_SUBDIRS(arm)
           testsuite=yes
-          common=yes
+          ;;
+       cr16*-*-*)
+          AC_CONFIG_SUBDIRS(cr16)
+          testsuite=yes
+          ;;
+       cris-*-* | crisv32-*-*)
+          AC_CONFIG_SUBDIRS(cris)
+          testsuite=yes
           ;;
        d10v-*-*)
            AC_CONFIG_SUBDIRS(d10v)
@@ -56,51 +65,62 @@ if test "${enable_sim}" != no; then
        frv-*-*)
            AC_CONFIG_SUBDIRS(frv)
           testsuite=yes
-          common=yes
           ;;
        h8300*-*-*)
            AC_CONFIG_SUBDIRS(h8300)
           testsuite=yes
-          common=yes
           ;;
+       iq2000-*-*)
+           AC_CONFIG_SUBDIRS(iq2000)
+          testsuite=yes
+          ;;
+       m32c-*-*)
+           AC_CONFIG_SUBDIRS(m32c)
+           ;;
        m32r-*-*)
            AC_CONFIG_SUBDIRS(m32r)
           testsuite=yes
-          common=yes
           ;;
        m68hc11-*-*|m6811-*-*)
            AC_CONFIG_SUBDIRS(m68hc11)
           testsuite=yes
-          common=yes
           ;;
        mcore-*-*)
            AC_CONFIG_SUBDIRS(mcore)
           testsuite=yes
-          common=yes
           ;;
        mips*-*-*)
            AC_CONFIG_SUBDIRS(mips)
           testsuite=yes
-          common=yes
           igen=yes
           ;;
        mn10300*-*-*)
            AC_CONFIG_SUBDIRS(mn10300)
-          common=yes
           igen=yes
           ;;
+       sh64*-*-*)
+           AC_CONFIG_SUBDIRS(sh64)
+          testsuite=yes
+          ;;
        sh*-*-*)
            AC_CONFIG_SUBDIRS(sh)
           testsuite=yes
-          common=yes
+          ;;
+       sparc-*-rtems*|sparc-*-elf*)
+          AC_CONFIG_SUBDIRS(erc32)
+          testsuite=yes
           ;;
        powerpc*-*-* )
            AC_CONFIG_SUBDIRS(ppc)
-          common=yes
           ;;
        v850*-*-* )
            AC_CONFIG_SUBDIRS(v850)
-          common=yes
+          igen=yes
+          testsuite=yes
+          ;;
+       *)
+          # No simulator subdir, so the subdir "common" isn't needed.
+          common=no
           ;;
    esac
    if test "$testsuite" = yes; then
This page took 0.023906 seconds and 4 git commands to generate.