]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - sim/configure.ac
readelf: Replace procesor with processor
[thirdparty/binutils-gdb.git] / sim / configure.ac
CommitLineData
b7026657 1dnl Process this file with autoconf to produce a configure script.
b7026657 2AC_INIT(Makefile.in)
136da8cd 3AC_CONFIG_MACRO_DIRS([.. ../config])
b7026657
AC
4
5AC_PROG_CC
6AC_PROG_INSTALL
7AC_CHECK_TOOL(AR, ar)
8AC_CHECK_TOOL(RANLIB, ranlib, :)
9
b7026657
AC
10AC_CANONICAL_SYSTEM
11AC_ARG_PROGRAM
12AC_PROG_CC
5e25901f 13AC_PROG_CPP
b7026657 14AC_SUBST(CFLAGS)
b7026657
AC
15AR=${AR-ar}
16AC_SUBST(AR)
17AC_PROG_RANLIB
18
19# Put a plausible default for CC_FOR_BUILD in Makefile.
5c887dd5
JB
20if test -z "$CC_FOR_BUILD"; then
21 if test "x$cross_compiling" = "xno"; then
22 CC_FOR_BUILD='$(CC)'
23 else
24 CC_FOR_BUILD=gcc
25 fi
b7026657
AC
26fi
27AC_SUBST(CC_FOR_BUILD)
4b164edf
AS
28CFLAGS_FOR_BUILD=${CFLAGS_FOR_BUILD-${CFLAGS}}
29AC_SUBST(CFLAGS_FOR_BUILD)
b7026657
AC
30
31# If a cpu ever has more than one simulator to choose from, use
32# --enable-sim=... to choose.
33AC_ARG_ENABLE(sim,
8d0978fb 34[AS_HELP_STRING([--enable-sim], [Enable the GNU simulator])],
b7026657
AC
35[case "${enableval}" in
36yes | no) ;;
37*) AC_MSG_ERROR(bad value ${enableval} given for --enable-sim option) ;;
38esac])
39
119da465
MF
40m4_define([SIM_ARCH], [
41 sim_arch=$1
42 AC_CONFIG_SUBDIRS($1)
43])
b7026657 44if test "${enable_sim}" != no; then
bb3eddb5
MF
45 sinclude(configure.tgt)
46 if test "$sim_igen" = yes; then
47 AC_CONFIG_SUBDIRS(igen)
48 fi
b7026657
AC
49fi
50
bb3eddb5
MF
51AC_CONFIG_FILES([Makefile testsuite/Makefile])
52AC_OUTPUT