X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=sim%2Fconfigure.ac;h=22db00f734c3a5d6e42bd717d4a62ff9645e0b37;hb=c88960d081f0b37ec03c66a13115e2a68e40d1ad;hp=e020b737f2c72c20464b579f0c59c036eda4bde5;hpb=f6bcefefe817b20b493081511cdeb8f87052bd41;p=deliverable%2Fbinutils-gdb.git diff --git a/sim/configure.ac b/sim/configure.ac index e020b737f2..22db00f734 100644 --- a/sim/configure.ac +++ b/sim/configure.ac @@ -1,4 +1,5 @@ dnl Process this file with autoconf to produce a configure script. +m4_include([../config/override.m4]) AC_PREREQ(2.59)dnl AC_INIT(Makefile.in) @@ -23,98 +24,26 @@ 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. AC_ARG_ENABLE(sim, -[ --enable-sim ], +[AS_HELP_STRING([--enable-sim], [Enable the GNU simulator])], [case "${enableval}" in yes | no) ;; *) AC_MSG_ERROR(bad value ${enableval} given for --enable-sim option) ;; esac]) -# WHEN ADDING ENTRIES TO THIS MATRIX: - -# Make sure that the left side always has two dashes. Otherwise you -# can get spurious matches. Even for unambiguous cases, do this as a -# convention, else the table becomes a real mess to understand and -# maintain. - +m4_define([SIM_ARCH], [ + sim_arch=$1 + AC_CONFIG_SUBDIRS($1) +]) if test "${enable_sim}" != no; then - testsuite=no - common=no - igen=no - case "${target}" in - arm*-*-* | thumb*-*-* | strongarm*-*-* | xscale-*-*) - AC_CONFIG_SUBDIRS(arm) - testsuite=yes - common=yes - ;; - cris-*-* | crisv32-*-*) - AC_CONFIG_SUBDIRS(cris) - testsuite=yes - common=yes - ;; - d10v-*-*) - AC_CONFIG_SUBDIRS(d10v) - ;; - frv-*-*) - AC_CONFIG_SUBDIRS(frv) - testsuite=yes - common=yes - ;; - h8300*-*-*) - AC_CONFIG_SUBDIRS(h8300) - testsuite=yes - common=yes - ;; - 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 - ;; - sh*-*-*) - AC_CONFIG_SUBDIRS(sh) - testsuite=yes - common=yes - ;; - powerpc*-*-* ) - AC_CONFIG_SUBDIRS(ppc) - common=yes - ;; - v850*-*-* ) - AC_CONFIG_SUBDIRS(v850) - common=yes - ;; - esac - if test "$testsuite" = yes; then - AC_CONFIG_SUBDIRS(testsuite) - fi - if test "$common" = yes; then - AC_CONFIG_SUBDIRS(common) - fi - if test "$igen" = yes; then + sinclude(configure.tgt) + AC_CONFIG_SUBDIRS(testsuite) + if test "$sim_igen" = yes; then AC_CONFIG_SUBDIRS(igen) fi fi