gdb: add target_ops::supports_displaced_step
[deliverable/binutils-gdb.git] / sim / configure.ac
CommitLineData
b7026657 1dnl Process this file with autoconf to produce a configure script.
d6416cdc 2m4_include([../config/override.m4])
b7026657
AC
3AC_INIT(Makefile.in)
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
13AC_SUBST(CFLAGS)
14AC_SUBST(HDEFINES)
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
119da465 45 sinclude(configure.tgt)
6dae8a88 46 AC_CONFIG_SUBDIRS(testsuite)
119da465 47 if test "$sim_igen" = yes; then
b7026657
AC
48 AC_CONFIG_SUBDIRS(igen)
49 fi
50fi
51
52AC_OUTPUT(Makefile)
53
54exit 0
This page took 0.639112 seconds and 4 git commands to generate.