X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=sim%2Fconfigure.in;h=c37304990f0fc65efae890630f259906d8a2add0;hb=3610d1317daaf338ec6ae4ae45bbfcd006ff03a8;hp=aa7b6d14d806ae3b158afa5ae710710162035127;hpb=0b0caaf11b441a5e4fe336fc43bcaf7269097806;p=deliverable%2Fbinutils-gdb.git diff --git a/sim/configure.in b/sim/configure.in index aa7b6d14d8..c37304990f 100644 --- a/sim/configure.in +++ b/sim/configure.in @@ -1,5 +1,5 @@ dnl Process this file with autoconf to produce a configure script. -AC_PREREQ(2.5)dnl +AC_PREREQ(2.12.1)dnl AC_INIT(Makefile.in) AC_PROG_CC @@ -48,18 +48,20 @@ extra_subdirs=common case "${target}" in arm*-*-*) sim_target=arm ;; + strongarm*-*-*) sim_target=arm ;; thumb*-*-*) sim_target=arm ;; d10v-*-*) sim_target=d10v ;; -# start-sanitize-d30v d30v-*-*) sim_target=d30v only_if_gcc=yes extra_subdirs="${extra_subdirs} igen" ;; -# end-sanitize-d30v + fr30-*-*) sim_target=fr30 ;; h8300*-*-*) sim_target=h8300 ;; 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 @@ -70,6 +72,7 @@ case "${target}" in # The mn10300 simulator can only be compiled by gcc. sim_target=mn10300 only_if_gcc=yes + extra_subdirs="${extra_subdirs} igen" ;; mn10200*-*-*) sim_target=mn10200 @@ -83,20 +86,12 @@ case "${target}" in only_if_gcc=yes #extra_subdirs="${extra_subdirs}" ;; -# start-sanitize-tic80 - tic80-*-*) - sim_target=tic80 - only_if_gcc=yes - extra_subdirs="${extra_subdirs} igen" - ;; -# end-sanitize-tic80 v850-*-*) # The V850 simulator can only be compiled by gcc. sim_target=v850 extra_subdirs="${extra_subdirs} igen" only_if_gcc=yes ;; -# start-sanitize-v850e v850e-*-*) # The V850 simulator can only be compiled by gcc. sim_target=v850 @@ -109,7 +104,6 @@ case "${target}" in extra_subdirs="${extra_subdirs} igen" only_if_gcc=yes ;; -# end-sanitize-v850e w65-*-*) sim_target=w65 # The w65 is suffering from gradual decay. @@ -117,20 +111,28 @@ case "${target}" in ;; z8k*-*-*) sim_target=z8k ;; sparc64-*-*) + only_if_gcc=yes sim_target=none # Don't build erc32 if sparc64. ;; - sparc*-*-*) + sparclite*-*-* | sparc86x*-*-*) # The SPARC simulator can only be compiled by gcc. + only_if_gcc=yes sim_target=erc32 + ;; + sparc*-*-*) + # The SPARC simulator can only be compiled by gcc. only_if_gcc=yes # 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