1 dnl Process this file with autoconf to produce a configure script.
8 AC_CHECK_TOOL(RANLIB, ranlib, :)
10 AC_CONFIG_AUX_DIR(`cd $srcdir;pwd`/..)
20 # Put a plausible default for CC_FOR_BUILD in Makefile.
21 if test "x$cross_compiling" = "xno"; then
26 AC_SUBST(CC_FOR_BUILD)
28 # If a cpu ever has more than one simulator to choose from, use
29 # --enable-sim=... to choose.
32 [case "${enableval}" in
34 *) AC_MSG_ERROR(bad value ${enableval} given for --enable-sim option) ;;
37 # Assume simulator can be built with cc.
38 # If the user passes --enable-sim built it regardless of $(CC).
43 # WHEN ADDING ENTRIES TO THIS MATRIX:
44 # Make sure that the left side always has two dashes. Otherwise you
45 # can get spurious matches. Even for unambiguous cases, do this as a
46 # convention, else the table becomes a real mess to understand and maintain.
49 arm*-*-* | thumb*-*-*)
51 extra_subdirs="${extra_subdirs} testsuite"
55 extra_subdirs="${extra_subdirs} testsuite"
57 d10v-*-*) sim_target=d10v ;;
61 extra_subdirs="${extra_subdirs} igen"
63 fr30-*-*) sim_target=fr30 ;;
64 h8300*-*-*) sim_target=h8300 ;;
65 h8500-*-*) sim_target=h8500 ;;
66 i960-*-*) sim_target=i960 ;;
67 m32r-*-*) sim_target=m32r ;;
68 m68hc11-*-*|m6811-*-*) sim_target=m68hc11 ;;
69 mcore-*-*) sim_target=mcore ;;
71 # The MIPS simulator can only be compiled by gcc.
74 extra_subdirs="${extra_subdirs} igen"
77 # The mn10300 simulator can only be compiled by gcc.
80 extra_subdirs="${extra_subdirs} igen"
85 sh*-*-*) sim_target=sh ;;
86 powerpc*-*-eabi* | powerpc*-*-solaris* | powerpc*-*-sysv4* | powerpc*-*-elf* | powerpc*-*-linux* )
87 # The PowerPC simulator uses the GCC extension long long as well as
88 # ANSI prototypes, so don't enable it for random host compilers
92 #extra_subdirs="${extra_subdirs}"
97 extra_subdirs="${extra_subdirs} igen"
100 # The V850 simulator can only be compiled by gcc.
102 extra_subdirs="${extra_subdirs} igen"
106 # The V850 simulator can only be compiled by gcc.
108 extra_subdirs="${extra_subdirs} igen"
112 # The V850 simulator can only be compiled by gcc.
114 extra_subdirs="${extra_subdirs} igen"
119 # The w65 is suffering from gradual decay.
122 z8k*-*-*) sim_target=z8k ;;
125 sim_target=none # Don't build erc32 if sparc64.
127 sparclite*-*-* | sparc86x*-*-*)
128 # The SPARC simulator can only be compiled by gcc.
133 # The SPARC simulator can only be compiled by gcc.
135 # Unfortunately erc32 won't build on many hosts, so only enable
136 # it if the user really really wants it.
140 *) sim_target=none ;;
144 # Is there a testsuite directory for the target?
145 testdir=`echo ${target} | sed -e 's/-.*-/-/'`
146 if test -r ${srcdir}/testsuite/${testdir}/configure ; then
147 extra_subdirs="${extra_subdirs} testsuite"
151 case "${enable_sim}" in
152 no) sim_target=none ;;
154 if test ${only_if_gcc} = yes ; then
155 if test "${GCC}" != yes ; then
156 echo "Can't enable simulator since not compiling with GCC."
162 if test ${only_if_enabled} = yes ; then
165 if test ${only_if_gcc} = yes ; then
166 if test "${GCC}" != yes ; then
174 if test x"${sim_target}" != xnone ; then
175 configdirs="${extra_subdirs} ${sim_target}"
176 AC_CONFIG_SUBDIRS($configdirs)