* Makefile.in (@COMMON_MAKEFILE_FRAG): Use
[deliverable/binutils-gdb.git] / sim / mips / configure.in
1 dnl Process this file with autoconf to produce a configure script.
2 sinclude(../common/aclocal.m4)
3 AC_PREREQ(2.5)dnl
4 AC_INIT(Makefile.in)
5
6 SIM_AC_COMMON
7
8 # Ensure a reasonable default simulator is constructed:
9 case "${target}" in
10 mips64*-*-*) SIMCONF="-mips0 --warnings";;
11 mips16*-*-*) SIMCONF="-mips0 --warnings";;
12 mips*-*-*) SIMCONF="-mips2 --warnings";;
13 *) SIMCONF="-mips0 --warnings";;
14 esac
15 AC_SUBST(SIMCONF)
16
17 AC_CHECK_HEADERS(string.h strings.h stdlib.h)
18 AC_CHECK_LIB(m, fabs)
19 AC_CHECK_FUNCS(aint anint sqrt)
20
21 SIM_AC_OUTPUT
This page took 0.034376 seconds and 5 git commands to generate.